解决style无法重写.css文件的问题
问题:在main.css已经定义了.main_content {width: 10px;}
。然而现在在index.html中,我们希望main_content的宽度设置为20px。
解决思路:在index.html中加入如下定义后,我们会发现格式依旧为10px,未发生变化。
<style>
.main_content{ width: 20px;
}
</style>
解决方法:在定义后面加入!important即可。此时我们发现,已经正确修改为20px。
<style>
.main_content{ width: 20px!important;
}
</style>