#searchbox
{
width: 200px;
height: 30px;
border: 5px;
padding: 10px
}
This CSS rule would be applied to:
<div id="searchbox">...</div>
It means that the total width of the box is 230px (200px width + two 5px borders + two 10px paddings) in all browsers except in IE. In IE, the total width would be just 200px (plus the padding and border widths).
Alternatively, you may use this CSS:
#searchbox
{
width: 200px
height: 30px;
}
#searchbox div
{
border: 5px;
padding: 10px
}
And the new HTML would be:
<div id="box"><div>...</div></div>
With this simple hack, the search box width will always be 200px, regardless of the browser.
0 comments:
Post a Comment
1. Comments posted must be accompanied by names or pseudonyms.
2. Anonymous posting and those containing profanities will be rejected.
3. Comments are moderated due to spam problems. I have to approve the comment before it will show up.