Jump to content

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

is there any reason that this code wouldn't work?

 

Generally it is because the browser, IE usually, is in quirks mode, in which mode it doesn't render margin:auto. Make sure to have a valid and standards mode-eliciting doctype and nothing above it. Not even a comment.

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.