Reputation: 58652
I'm trying to make my image to fit the whole container width.
I've tried :
width="100%"
100%
None of those work.
<div class="container" style="background-color:gray;">
<div width="100%">
<img width="100%" src="http://s6.postimg.org/7ic0egypt/report_nav.png">
</div>
</div
Upvotes: 0
Views: 235
Reputation: 9439
Here add this to your css, by default the body has a margin of 8px.
body{margin: 0px;}
Upvotes: 1