Forum Moderators: not2easy
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"I used a strict doctype but it will display the same in quirks, even back to NS4.
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:xhtml="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>margin test</title>
<style type="text/css">
html, body {background:#fff; margin:0; padding:0;}
#something {margin-left: 10px; background:#f00;}
#content {margin-left:10px; background:#00f;}
</style>
</head><body>
<div id="something">
<div id="content">Yes, it's here</div>
</div>
</body>
</html>