天天看点

html5-设置hr的颜色大小

在css文件中单纯的设置hr的颜色、样式不起作用

直接在html页面中设置

<div class="tpl_title">

        <hr class="hr" size=1   color="#999" style="border:1 solid #999" />

        <p class="tpl_con">您上传的超市小票</p>

        <hr class="hr_t" size=1 color="#999" style="border:1 solid #999" />

</div>

.tpl_title{ width:100%; height: 64px; line-height: 64px;}

.hr{float:left; width: 25%; margin-top: 32px;} 

.hr_t{float:right; width: 25%;margin-top: 32px;}

继续阅读