Possible Duplicate:
margin left and right on with 100%
I have a textbox that I want to fill the width of the page but I need it to have a sizeable margin-left to give the appearance of being indented. So if I have a style such as this:
.notesText {
margin-left: 20px;
width: 100%;
}
I end up with the page extending another 20px out to the right to accommodate my textbox instead of the textbox just filling the existing width of the page. As page widths with vary by device, how do I format this to have a 20px left margin and then fill the remaining space of the page?
try
margin-left: 5%; width: 95%;This will give you a variable margin which may or may not be what you want