css定义一个横线hr
css是怎么定义这个<hr>的啊?
<hr style="****************">吗?
问题点数:10、回复次数:4Top
1 楼kickken(踢你)回复于 2003-06-03 08:26:53 得分 5
<style type="text/css">
<!--
hr {color:red;width:50}
-->
</style>Top
2 楼hehe6(hehe6)回复于 2003-06-03 13:39:30 得分 0
怎么实现阴影效果啊,我觉得那样挺漂亮的Top
3 楼bullion(与时代同步)回复于 2003-06-03 15:22:04 得分 0
如果加了noshade就是没阴影效果
否则就是有阴影.Top
4 楼onefi(最爱看《教父》)回复于 2003-06-03 16:42:42 得分 5
有很多阴影效果不是一个hr解决的
而是上面一个table 下面一个table
上面table的下边框的css以及下面table得上边框的css被调整过后的结果
你可以把你所看到的阴影截屏截下来,然后用photoshop放大到1600%,你就能看清楚是具体什么颜色了
比如用下面的代码就能实现我们通常所说的“刻痕”
<table id="table1">
<tr>
<td style="border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: buttonshadow;">
</td>
</tr>
</table>
<table id="table2">
<tr>
<td style="border-top-width: 1px;
border-top-style: solid;
border-top-color: buttonhighlight;">
</td>
</tr>
</table>Top




