Albovsky
Albovsky

Reputation: 165

How to remove gap between border of website and image?

How to remove this gap between left and right borders? I need a pic be 100% of browser window.

enter image description here

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

Answers (1)

Chrisissorry
Chrisissorry

Reputation: 1514

Try putting this in your CSS file:

body {
  margin: 0;
  padding: 0;

}

Upvotes: 1

Related Questions