gpt4 book ai didi

css - 如何在固定 div 内居中绝对 div

转载 作者:行者123 更新时间:2023-12-04 13:54:42 25 4
gpt4 key购买 nike

我已经为照片设置了一个模态,所以当我点击一张小照片时,我会在模态中得到一张更大的照片,模态有 position: fixed;并且模态内容有 position: absolute;我可以用 margin: auto; left: 0; right: 0; 居中但是然后宽度一直向右和向左移动,我希望模态内容宽度与其中的照片或模态内容的内容相同

我的代码:

.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding: 30px;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */

}

.modal-content {
background-color: #fefefe;
position: absolute;
top: 50px;
margin-bottom: 30px;
margin: auto;
border: 1px solid #888;
}

.modalimg {
position: relative;
text-align: center;
}

.modalimg img{
max-width: 100%;
max-height: 400px;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
position: relative;
box-shadow: 0 0 20px rgba(0,0,0,0.4);

}

现在可能有点乱,但我尝试了很多不同的东西,但没有运气。

最佳答案

这就是我在将绝对定位元素居中时使用的方法,这一直对我有用:

.absolute-center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

关于css - 如何在固定 div 内居中绝对 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42828949/

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