Jump to content

Center a DIV?


ChrisMartino

Recommended Posts

Hey i've looked around for a CSS div that would center something to the middle of the page?, But i cant find it this is were the div would go:

 

<div id="maincontent">
<div class="innertube">

        // DIV WOULD GO HERE<<<<<<

</div>
</div>

 

 

And heres my style.css :

 

body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
}

#framecontent{
position: absolute; 
bottom: 0; 
left: 0; 
width: 100%; 
height: 70px; /*Height of frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background: #464646;
color: white;
}

#maincontent{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 60px; /*Set bottom value to HeightOfFrameDiv*/
overflow: auto; 
background: #000000;
}

.innertube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
padding: 0 0 60px 0; /*Set value to (0 0 HeightOfFrameDiv 0)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

 

 

Link to comment
https://forums.phpfreaks.com/topic/187792-center-a-div/
Share on other sites

<div id="maincontent">
   <div class="innertube" style="text-align: center;">
     
       <div style="width:50px;margin:0 auto;background-color:red; text-align: left;">This is center div</div>

   </div>
</div>

 

adding text align: center would center the div in Internet Explorer.

Link to comment
https://forums.phpfreaks.com/topic/187792-center-a-div/#findComment-991638
Share on other sites

<html>
<body>
<p>NOT CENTERED</p>
<div style="margin:0 auto;width:200px;text-align:center;">
<p>CENTERED</p>
</div>
</body>
</html>

 

See attached image for outcome.

 

Vertical-alignment within a div can be achieved with line-height.

 

[attachment deleted by admin]

Link to comment
https://forums.phpfreaks.com/topic/187792-center-a-div/#findComment-992640
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.