gpt4 book ai didi

css - 类依赖于其他

转载 作者:行者123 更新时间:2023-11-28 18:38:13 25 4
gpt4 key购买 nike

我有一个 Css 属性调用

.Zero
{
width:100px;
}

我有另一个电话

.One

例如,我需要第一个类是同一类(零)+ 10 px

如果零级 = 500

一级 = 510

我该怎么做?

最佳答案

按照我的理解这样写:

.Zero,.One
{
width:100px;
}
.One{
padding-right:10px;
}

您也可以使用 javascript。像这样写:

var modWidth = $('.Zero').width();
$('.one').css({width: modWidth + 10});

检查这个http://jsfiddle.net/mweEh/

关于css - 类依赖于其他,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12174377/

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