I'm building a responsive webpage and have set all outer wrappers (inlcuding body) to 100%
width. The problem is that some elements 100% width is going outside the wrappers?
Please, take a look on this page : http://test.ufeed.se/
Size your browser to under 1000 px width. scroll down a bit and then use the horizontal scroll. You will see that some of the elements are outside the wrapper, why?
Do I maybe have to remove px
from 100%
width like this :
width: calc(100% - 16px);
to remove paddings (that takes extra space)?