css - Keep an image centered regardless of screen size? -
here's fiddle created. want decorative ornament stay in middle of screen. can't figure out how it. tried wrapping in div didn't work either.
html
<span class="border-top"></span>
css
.border-top { background: url("http://i.imgur.com/txoi4sd.png") no-repeat; clear: both; display: block; height: 47px; margin-bottom: 50px; width: 100%; }
.border-top { background: url("http://i.imgur.com/txoi4sd.png") center center no-repeat; clear: both; display: block; height: 47px; margin-bottom: 50px; width: 100%; }
<span class="border-top"></span>
this trick.
reference: http://www.w3.org/tr/css3-background/#the-background
Comments
Post a Comment