一、DIV+CSS下划线基础
在DIV CSS网页中常常使用CSS代码来人对象文字内容加上下划线。
使用CSS属性单词:
text-decoration -CSS 手册了解:/uploadfile/201008/22/B1145453123.png'')" src="/uploadfile/201008/22/55145453556.png" />
四、下划线高级运用
我们接下来为大家讲解常见CSS 超链接,当随便经过时候文字对象被加下划线。
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> copyright myeducs.cn 网学 <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>下划线演示myeducs.cn</title> <style> .yangshi a{ text-decoration:none;}/* 鼠标经过热点文字被加下划线 */ .yangshi a:hiver{ text-decoration:underline;}/* 鼠标经过热点文字被加下划线 */ </style> </head> <body> <p> <span class="yangshi"> <a href="http://myeducs.cn">网学</a> </span> </p> </body> </html> |
请将以上代码复制新建HTML即可查看该实例样式。更详细超链接讲解请进DIV CSS超链接。
扩展阅读:
超链接
CSS font
copyright myeducs.cn 网学