ReportingAnalyst
MIS
Hi,
What can I do make this div within the body tag shift more left? I see thin space of the body on the top and left of the div. How I shift more top and left so that the body background is not seen there?
See this code and let me know if I need to add more properties within the div_Container class?
Thanks.
What can I do make this div within the body tag shift more left? I see thin space of the body on the top and left of the div. How I shift more top and left so that the body background is not seen there?
See this code and let me know if I need to add more properties within the div_Container class?
Thanks.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<HTML>
<HEAD>
<style type="text/css">
body
{
font-family: Verdana, Arial, Helvetica, Sans-Serif;
color:#5a5b5e;
font-size: 12px;
background-color: #DDDDDC;
overflow: auto;
}
/*This div should be able show a horizontal scroll bar and it contains all the nested divs within it */
.div_Container
{
width:850px;
height: 650px;
background-color: #FFFFFF;
}
</style>
<TITLE>View Commissions Reports</TITLE>
</HEAD>
<body>
<!-- This is the top most level which holds all the content divs -->
<div class="div_Container">
All nested div come here.
</div>
</body>
</form>
</body>
</html>