Jump to content

css aligning


droidus

Recommended Posts

Depends on what it's in. Put your div in a main div and it will be fine.

<body>

<div id="container" style="width:800px; height: 600px; border: blue solid 1px;">

<div id="centere" style="margin-left:auto; margin-right:auto; width:620px; height: 100px; border: red solid 1px;">

</div>

</div>

</body>

Link to comment
https://forums.phpfreaks.com/topic/247758-css-aligning/#findComment-1272378
Share on other sites

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

Link to comment
https://forums.phpfreaks.com/topic/247758-css-aligning/#findComment-1272569
Share on other sites

what browser are you using to view this code? margin: 0 auto; will work in most browsers except for IE as previously stated.. for IE you will need to use the "text-align" attribute on the body and divs of your content in order to display them as centered correctly..

Link to comment
https://forums.phpfreaks.com/topic/247758-css-aligning/#findComment-1272580
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.