DIV+CSS下划线基础

来源:互联网 发布:慕恋的喜欢lofter乐乎 编辑:程序博客网 时间:2024/06/05 09:22
CSS控制下划线出现用到地方   -  TOP
在DIV CSS网页中常常使用CSS代码来人对象文字内容加上下划线。
使用CSS属性单词:
text-decoration -CSS 手册了解:http://www.divcss5.com/shouce/c_textdecoration.shtml
text-decoration : none || underline || blink || overline || line-through

text-decoration下划线CSS单词值参数:
none :  无装饰
blink :  闪烁
underline :  下划线
line-through :  贯穿线

overline :  上划线



//鼠标移上去出现下划线移出去下划线消失
               $("#addfield").hover(function(){
                $(this).css("text-decoration","underline");
               },function(){
                $(this).css("text-decoration","none");
               })

0 0
原创粉丝点击