发布网友
共1个回答
热心网友
hr是水平分隔线,不能垂直的,如果你要一条垂直的平分线可以用div等块元素来模拟一条,比如:
<div style='width:50%;float:left;height:700px;'>内容区域
<div style='width:1px; background:red;float:right;height:700px;'><!--这个div模拟一条红色的垂直分割线--></div>
</div>
<div style='width:50%;float:left;height:700px;'>内容区域</div>
还有一些其他类似的办法,通过div或者其容器来布局,分割区域