gpt4 book ai didi

css - 如何将底部参数的百分比转换为像素 CSS?

转载 作者:太空宇宙 更新时间:2023-11-04 08:48:05 27 4
gpt4 key购买 nike

我在我的 css 文件中得到了这个:

#myClass {
position: absolute;
height: 6px;
width: 100%;
bottom: 66%; << here is 66%
left: 0;
right: 0;
background-color: #666;
cursor: n-resize;
}

有垫底的66%

但是我需要这样的东西:

bottom: ~calc(66% - 35px);

或者这个

bottom: calc(66% - 35px);

但这没有用!

你能帮帮我吗?

最佳答案

如果它应该是高度的 66%,尝试:

bottom: calc(66vh - 35px);

或者如果它应该是宽度的 66%,尝试:

bottom: calc(66vw - 35px);

关于css - 如何将底部参数的百分比转换为像素 CSS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43634051/

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