I've following code:
HTML
<div class="banner">
<img src="banner.png">
</div>
CSS
.banner > img {
margin: auto;
}
The Image have a width of 3000px and a height of 200px I want the image horizontal centered and no horizontal scroll bar. (Browser resizing should no problem then)
I've tried to give the .banner
div the banner image as background-image but then the div won't find it's size automatically ...
How is this possible?