Jump to content

CSS Design


Drezard

Recommended Posts

Hello,

 

I'm trying to do some basic CSS stuff. I want this code:

 

<html>

    <head>
      
        <title> Simple Application </title>
        
	<style type="text/css">
        <!--
        
		#header {top: 0px;
		         left: 0px;
				 height: 170px;
				 width: 100%;
				 background-color: #0033FF;}

		#content {top: 172px;
		         left: 0px;
				 height: 512px;
				 width: 100%;}

        -->
        </style>
        
</head>
    
<body>

        <div id="header"> </div>
            
        <div id="content"> </div>

</body>
    
</html>

 

To display a box that goes RIGHT across the screen. So no white margins either side. How do i modify my code to do this? Cause currently on IE7, it has a huge white margin on either side.

 

Thanks, Daniel

Link to comment
https://forums.phpfreaks.com/topic/118421-css-design/
Share on other sites


<style type="text/css">
        <!--                         

body, html{
margin:0px;
padding:0px;
}
        
		#header {top: 0px;
		         left: 0px;
				height: 170px;
				width: 100%;
				background-color: #0033FF;}

		#content {top: 172px;
		         left: 0px;
				height: 512px;
				width: 100%;}

        -->
        </style>

Link to comment
https://forums.phpfreaks.com/topic/118421-css-design/#findComment-609689
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.