I have two divs,
DIV 1 with 80% width, centralized and I have the DIV 2 that is inside the DIV 1, I want it to be 100% wide, but since it is inside the DIV 1 that has 80% 100% becomes 100% of the DIV 1 (Turning 80%). But I want DIV 2 to have 100% of the width of the screen, even if it is inside DIV 1, can you do that?
<div class="1"> <!--TEM 80%-->
<div class="2"></div><!--TEM 100%, ou seja, pega o total da DIV1, mas quero que seja 100% da TELA TODA---->
</div>