答案 0 :(得分:13)
对于<hr>
行,您可以使用css :before
伪元素制作不同颜色的区域(请更改颜色和尺寸以符合您的设计):
hr {
background-color: #555;
border: none;
display: block;
height: 4px;
overflow: visible;
position: relative;
width: 100%;
}
hr:before {
background-color: #f90;
content: '';
display: block;
height: 8px;
left: 0;
position: absolute;
top: -2px;
width: 20%;
z-index: 1;
}
<hr>
答案 1 :(得分:4)
您可以对:before
的一半使用hr
伪元素,并使用absolute
位置。
hr {
position: relative;
border: none;
border-bottom: 1px solid #aaa;
overflow: visible;
}
hr:before {
position: absolute;
left: 0;
width: 50%;
content: '';
height: 3px;
background: red;
top: -1px;
}
<hr>
答案 2 :(得分:4)
使用flex
我会非常简单并在伪上使用box-shadow
来使这个答案与其他答案不同;)
hr {display:flex;}
hr:before {
content:'';
width:50%;
box-shadow:0 0 0 3px rgb(146, 24, 53);
}
body {background:#333;color:rgba(124,153,246)}
code{font-size:1.5em;color:gold}
&#13;
<h1><code>FLEX</code> TEST ON <code>HR</code> PSEUDO</h1>
<hr>
&#13;
答案 3 :(得分:4)
是的,之前的假是很棒的。但是,您可以使用另一种方法使用任何css网格轻松实现:
CSS:
.red{
border: 2px solid deeppink;
position: relative;
top: -1px;
}
HTML:
<div class="container">
<hr class="red col-sm-6" /><hr class="col-sm-6" />
</div>
答案 4 :(得分:3)
你可以这样做:在选择者之前/之后。
SCSS:
hr {
overflow:initial;
&:after {
content:'';
width:50%;
height:3px;
display:block;
background:red;
top:-2px;
position:relative;
}
}
尝试使用我为您创建的这个小提琴: https://jsfiddle.net/fwzs8uy0/
就个人而言,我会使用div而不是HR。
答案 5 :(得分:3)
您可以使用两个> If the Cubs can win the World
> Series, Donald Trump can win the presidency, and the Cowboys can win
> 11-straight, then I can survive finals
:
hr
&#13;
hr {
display: inline-block;
vertical-align: middle;
width: 50%;
box-sizing: border-box;
}
hr:first-of-type {
height: 5px;
border: none;
background: red;
}
&#13;
答案 6 :(得分:2)
使用线性渐变。这可能会对你有所帮助。
if ($result[0] == NULL)
continue;