首页 > Web开发 > 详细

CSS 本本

时间:2016-07-10 21:36:53      阅读:304      评论:0      收藏:0      [点我收藏+]

目录

01 超级链接 <a></a> 隐藏 下划线

02 输入框 <input /> 隐藏 边框

03 输入框 <input /> 边框 长度

 

 


 

01 超级链接 <a></a> 隐藏 下划线

  a { text-decoration:none; }  //取消所有超级链接的下划线

  a:hover { color: #ff0000; text-decoration: underline; }  //鼠标放在上面时:颜色变红;出现下划线;

 

02  输入框 <input /> 隐藏 边框

  <input style="border:0" />  // 支持IE6

  <input style="border:none" />

  <input style="border-style:none"/>

 

03 输入框 <input /> 边框 长度

  <input size="30" />

CSS 本本

原文:http://www.cnblogs.com/qixiawentang/p/5658434.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!