gpt4 book ai didi

html - 使用CSS动态居中对齐元素

转载 作者:行者123 更新时间:2023-11-28 10:44:01 25 4
gpt4 key购买 nike

有什么方法可以仅使用 css 动态地使两个对象居中?通过动态居中,我的意思是如果其中一个对象的大小发生变化,则 css 不会发生变化。

目前使用下面的 css 实现这个非动态 im,有没有办法在不知道子元素的高度尺寸的情况下做到这一点,因此无法设置 top:left: 正确吗?


HTML

<div class="box">
<img src="myimageurl" width="100" height="100">
</div>

CSS

.box {
width: 200px;
height: 200px;
background: red;
}

.box img {
margin-top: 50%;
margin-left: 50%;
position:relative;

/* These are the values id like to dynamically set */

top: -50px; /* being half of the image height */
left: -50px; /* being half of the image width */
}

我在这里用 js 解决了这个问题:http://jsfiddle.net/gnygxbxe/

最佳答案

您不需要计算任何百分比位置。使用伪元素将其居中。您只需要确保内部的所有元素都具有属性 display: inline-blockvertical-align: middle

请记住,框内的元素应该在 1 行中。因此,如果您想放置很多文本,只需将文本包装为 span.box 元素内的任何内容即可。

作为引用,请阅读:https://css-tricks.com/centering-in-the-unknown/

请参阅此代码段。支持 IE8+。

.box {
margin: 20px;
background: #f8f8f8;
border: #f0f0f0 solid 1px;
text-align: center;
white-space: nowrap;
}

.box:before {
content: '';
display: inline-block;
height: 100%;
margin-right: -0.15em;
vertical-align: middle;
}
.box > * {
display: inline-block;
padding: 15px;
border: 1px solid #ccc;
vertical-align: middle;
}
<div class="box" style="height: 300px;">
<img src="http://placehold.it/100x100" />
</div>

关于html - 使用CSS动态居中对齐元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30258808/

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