gpt4 book ai didi

css - 自动宽度计算

转载 作者:太空宇宙 更新时间:2023-11-03 20:18:19 25 4
gpt4 key购买 nike

我不知道是否可以用纯 css 做这样的事情。 宽度:自动 - 100px;

element.style {
margin-left: 100px;
width: auto;
}

我总是需要将 100px 的值减去宽度。这只能用 JS 完成,还是有任何 css 替代方案?

最佳答案

是的,我认为您可以使用 CSS 3 calc() function

element.style {
margin-left: 100px;
width: calc(100% - 100px); /* Just an example */
}

关于css - 自动宽度计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16221715/

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