Good morning. I have a body of 100% width and inside a div of the same width. The problem is that the div is taking 100% of the page visible and not 100% real.
That is, if I have the internet browser window changed in size, and the horizontal movement arrows appear, 100% of the div becomes the full width of the page that I am seeing at the moment , but it does not cover the part that I access with the arrows to the right.
.wrapper {
width: 950px;
margin: 0 auto;
border: 0px;
overflow: hidden;
padding-top: 0px;
padding-bottom: 0px;
margin-bottom: 0px;
}
.header {
max-width: 100%;
overflow: hidden;
position: relative;
}
<body style="background-image:url(img/bg.jpg); margin:0; padding:0; width:100% ">
<div class=header style="background-color: rgba(0, 0, 0, 0.2); height:125px; ">
<div class=wrapper style="width:950px; margin: auto; height:125 ">
<img style=" width:200px; float:left; position:absolute; top:20px;" src=img/dsd.png>
<div id=boton style="position:absolute; top:40; left:785">
<a href="service.html"> <img src=img/service.png width=170/> </a>
</div>
</div>
</div>
</body>