商城建设网站开发,什么是网络营销的重要特点,网站建设电话销售模版,移动开发是什么解决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