Having trouble with a horizontal scroll bar that pops up.
My page is set up like so:
<html>
<head></head>
<body>
<article>
</article>
</body>
</html>
My css
article {
width:100%;
margin:0px auto;
padding:25px;
}
I’m also using Yahoo’s Reset CSS. The trouble is the 100% on Article is giving me a horizontal scroll that I can’t get rid of. I want it to stretch the length of the window with just a bit of space on the right and left.
The
widthproperty sets the width of the content, excluding padding, so the total width required by the element is all of the available width plus 2 times 25px.Omit
width: 100%(so that the defaultwidth: autowill be used).