gpt4 book ai didi

javascript - 有没有办法简化这个 css?

转载 作者:行者123 更新时间:2023-11-30 08:50:59 25 4
gpt4 key购买 nike

有没有办法简化以下内容?如果可以,我该怎么做?

.ui-layout-north {
border-top: none;
border-left: none;
border-right: none;
padding: 0px;
}
.ui-layout-west {
border-top: none;
border-left: none;
border-bottom: none;
padding: 0px;
}
#inner {
border-top: none;
border-right: none;
border-bottom: none;
padding: 0px;
}
#inner-center {
border-top: none;
border-left: none;
border-right: none;
padding: 0px;
}
#inner-south {
border-right: none;
border-left: none;
border-bottom: none;
padding: 0px;
}

您可以在此处查看实际效果:http://jsfiddle.net/xUvJk/2/

最佳答案

您可以用逗号分隔每个标识符,以将相同的样式应用于多个元素:

#inner, #inner-center, #inner-south ... {
border-top: none;
border-left: none;
border-right: none;
padding: 0px;
}

然后只需为每个具有不同样式的元素指定:

#inner { 
border-left : inherit;
}

关于javascript - 有没有办法简化这个 css?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17910975/

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