下划线添加

DIV+CSS各种下划线的添加

样式表部分代码
<style>
<!--
p.one{ text-decoration:underline overline; }    /* 下划线+顶划线*/
p.two{ text-decoration:underline line-through; }  /* 下划线+删除线*/
p.three{ text-decoration:overline line-through; }  /* 顶划线+删除线*/
p.four{ text-decoration:underline overline line-through; }  /* 三种同时*/
-->
</style>

 

内容部分代码
<body>
<p>正常文字对比</p>
<p class="one">下划线文字,顶划线文字</p>
<p class="two">下划线文字,删除线文字</p>

<p class="three">顶划线文字,删除线文字</p>
<p class="four">三种效果同时出现</p>
</body> 

posted on 2011-10-24 11:26    阅读(285)  评论(0)    收藏  举报