我有一个style.css
文件。具有
.example {
float: none;
left: 4px;
position: absolute;
top: 3px;
}
现在,我尝试禁用.example
类中的某些属性以
.example {
bottom: 20px;
}
我尝试如下,但这不起作用
<style type="text/css">
.example {
bottom: 20px !important;
top: none !important;
left: none !important;
position: none !important;
}
</style>
那可能吗?我不想直接在文件中更改?