0

visual

Want div to start on left. Small space do not want. Tried setting margin and padding to 0 in my div labeled container and the div itself, nothing changes. Any help would be much appreciated.

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>


<style>
    .container{
    display:flex;
    }

    .box{
    background-color:black;
    }
</style>


<body>
 <div class="container">
  <div class="box">box</div>
 </div>
</body>
</html>
Canto.III
  • 69
  • 5

3 Answers3

0

You can set the body margin to 0

body {margin: 0}

https://jsfiddle.net/0b4a6c1b/2/

0

Try to add margin: 0 to your body

body{
  margin: 0;
}
.container{
    display:flex;
    }

    .box{
        background-color:black;
    }
<div class="container">

<div class="box">box</div>

</div>
0

Need to reset on body. I will recommend to use css reset develop by bootstrap called reboot.css reboot if you not add on start

body {
margin: 0;
} 
Ram kumar
  • 3,152
  • 6
  • 32
  • 49