问答详情
源自:15-2 水平居中设置-定宽块状元素

我的margin-right为什么不可以居右显示?

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>定宽块状元素水平居中</title>
<style>
div{
    border:1px solid red; 
    width:200px;
    margin-right:auto;
  
}

</style>
</head>

<body>
<div>我是定宽块状元素,我要水平居中显示。</div>
</body>
</html>

提问者:nwustudent 2016-07-13 12:38

个回答

  • 星空六六
    2016-07-13 12:57:51
    已采纳

    margin-right:是指元素右边外部填充的距离,你想设置这一个属性是它居右显示,是不可以的,你开启浮动布局,不设置也可以居右

  • 谭敏3758669
    2016-08-03 14:43:53

    margin 是设置内容外边距的 不是设置内容在浏览器中的位置的!!!

  • 卑鄙哥auteman
    2016-07-13 12:41:39

    是否设置的浮动!检查一下