HTML将标题图像与中心对齐无法正常工作

时间:2018-12-06 20:05:36

标签: html css

我有一个图像,试图将其作为不起作用的标题与中心对齐,这是我的代码,感谢您的帮助,因为我在网上找到的其他任何内容目前都无法正常工作。

$.ajax({ url:"...", type: "GET", success:function(){}, error : function{} });
.center {  	
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

3 个答案:

答案 0 :(得分:2)

那是因为您在代码中没有居中使用的标记,这是一个有效的示例!

.center {  	
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}
<body class="news">
  <div id="geheel">
    <div id="header"><center><img src="Images/turbinezaal9-2-2.jpg"/></center></div>
</body>

答案 1 :(得分:1)

我忘了使用类.center

答案 2 :(得分:1)

您忘记了标签

.center {  	
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}
<body class="news">
  <div id="geheel">
    <div id="header"><center><img src="Images/turbinezaal9-2-2.jpg"/></center></div>
</body>