gpt4 book ai didi

css - 绝对偏移百分比 + 值?

转载 作者:技术小花猫 更新时间:2023-10-29 11:28:49 24 4
gpt4 key购买 nike

是否可以使用 css 的绝对定位元素来做类似的事情:

 .myElement{
width: 385px;
position: absolute;
left: 50% - 385px;
}

并让元素偏移一个百分比减去它的宽度,或类似的东西?

最佳答案

在你想要去的方向上使用负边距。

.myElement{
width: 385px;
position: absolute;
left: 50%;
margin-left: -385px;
}

关于css - 绝对偏移百分比 + 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17052366/

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