gpt4 book ai didi

带有百分比 + 静态值的 css

转载 作者:太空宇宙 更新时间:2023-11-04 00:11:14 25 4
gpt4 key购买 nike

我知道以下内容是错误的,但生成类似内容的更简单方法是什么?

 .classhere{
width: 50px + 10%
}

所以这里的 div 最小宽度为 50px +10%(假设父级为 100px)所以 55px 并且当父级全屏时,例如1800px .classhere 的宽度为 50+180px。

更新:

欢迎使用 javascript、jQuery 和其他解决方案

最佳答案

你可以像下面那样做。

HTML

<div class="parent">
<div class="child"></div>
</div>

CSS

.parent{
width:100px;
height:100px;
background-color:blue;
}

.child{
background-color:green;
}

jQuery

$(document).ready(function(){
$(".child").width(50+($(".parent").width()*0.1));
$(".child").height(50);
});

如果你想看它的演示,jsfiddle 是 here

关于带有百分比 + 静态值的 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12939810/

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