gpt4 book ai didi

javascript - 如何删除 CSS 样式?

转载 作者:太空狗 更新时间:2023-10-29 15:04:53 30 4
gpt4 key购买 nike

我想在 bootstrap 中删除一些样式,这是一个例子:

测试.html:

<div class='span1'></div>

bootstrap.css:

span1 {
width: 60px;
}

我想删除width 样式,并添加min-width: 60px 样式

我这样做:

在 html 中添加 test 类:

<div class='span1 test'></div>

在 CSS 中:

.test{
min-width: 60px;
}

但是如何删除 bootstrap.css 中的 width: 60px

最佳答案

您可以使用auto 重置宽度:

.test{
width: auto;
min-width: 60px;
}

工作示例:

span {
width: 100px;
background-color: red;
}

span.test {
width: auto;
min-width: 60px;
}
<span class="test">
span!
</span>

关于javascript - 如何删除 CSS 样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30933233/

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