为什么局域网做网站,wordpress大图主题,邢台网站制作市场,泰安市高新区建设局网站解决style无法重写.css文件的问题问题#xff1a;在main.css已经定义了.main_content {width: 10px;}。然而现在在index.html中#xff0c;我们希望main_content的宽度设置为20px。
解决思路#xff1a;在index.html中加入如下定义后#xff0c;我们会发现格式依旧为10px在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