gpt4 book ai didi

html - 图像在 Wordpress 中居中对齐

转载 作者:太空宇宙 更新时间:2023-11-03 23:12:15 26 4
gpt4 key购买 nike

我在 Wordpress 的几个主题安装中看到了这一点,它们没有用于图像对齐中心的 CSS。我正在尝试添加它,以便此页面顶部的图像居中,但它不起作用:

http://www.estiponagroup.com/dev/estipona-group-makea-an-announcement-celebrating-its-non-rebranding/

HTML

<a href="http://www.estiponagroup.com/dev/wp-content/uploads/Header.jpg" class="fluidbox fluidbox-closed" id="fluidbox-1">
<div class="fluidbox-wrap" style="z-index: 990;">
<img width="540" height="160" alt="Header" src="http://www.estiponagroup.com/dev/wp-content/uploads/Header.jpg" class="wp-image-1114 size-full aligncenter" style="opacity: 1;">
<div class="fluidbox-ghost" style="width: 540px; height: 160px; top: 0px; left: 0px;"></div>
<div class="fluidbox-loader" style="width: 540px; height: 160px; top: 0px; left: 0px;"></div>
</div>
</a>

CSS:

img.aligncenter {margin:0 auto !important;}

我错过了什么?

最佳答案

图像默认是内联的,因此不能用边距定位。

img.aligncenter {
margin:0 auto !important;
display: block;
}

此外,widthheight 属性已弃用(并且在 IE10+ 中不起作用)。请改用 style

关于html - 图像在 Wordpress 中居中对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32147123/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com