|
<hr> Inserts a horizontal rule 加 入 一 条 水 平 线
<hr size=?> Sets size (height) of rule 设 置 水 平 线 的 大 小( 高 度)
<hr width=?> Sets width of rule, in percentage or absolute value 设 置 水 平 线 的 宽 度( 百 分 比 或 绝 对 像 素 点)
<hr noshade> Creates a rule without a shadow 创 建 一 个 没 有 阴 影 的 水 平 线
通过CSS控制hr
<hr style="height:1px" noshade>
注:<hr style="border:1px" noshade>的效果跟 <hr style="height:1px" noshade> 在ie8下不一样。 |
|