Reputation: 165
How to remove this gap between left and right borders? I need a pic be 100% of browser window.
img.test {
display: block;
outline: 0px;
padding: 0px;
margin: 0px;
}
<img class="test" src="/img/back_1.jpg">
What I'm trying to do is to put a few pics in a row and I want them to look like a background like om this website: http://zhumusic.com
Upvotes: 0
Views: 2160
Reputation: 1514
Try putting this in your CSS file:
body {
margin: 0;
padding: 0;
}
Upvotes: 1