I'm trying to put a line over some text.
This is what I want
And this is what I got so far

this is the what I have in my application
<div class="zoekResultatLine">
<h2 class="zoekResultat">ZOEKRESULTAAT</h2>
</div>
.zoekResultatLine
{
text-decoration:overline;
color : rgb(217, 217, 217);
}
.zoekResultat
{
color : rgb(0, 158, 224);
}
Give it a border-top and play with the padding-top to get it right:
.zoekResultatLine {
border-top:1px solid rgb(217, 217, 217);
}
.zoekResultat {
color : rgb(0, 158, 224);
margin-top: 0px;
}
Fiddle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With