HTML:
<h2>Lorem ipsum dolor sit.</h2>
CSS:
h2 {
position: relative;
display: inline-block;
padding: 5px;
border-top: solid 4px #f96;
}
h2:after {
content: "";
position: absolute;
top: -4px;
left: 0;
height: 4px;
width: 40%;
background: #444;
}
ПафНутиЙ 01.05.2013 css, border, сниппет CSS Сниппеты 6332
<h2>Lorem ipsum dolor sit.</h2>
h2 {
position: relative;
display: inline-block;
padding: 5px;
border-top: solid 4px #f96;
}
h2:after {
content: "";
position: absolute;
top: -4px;
left: 0;
height: 4px;
width: 40%;
background: #444;
}