我有一个使用
的css文件的页面html
{
width:100%;
}
但是,Iframe
中的该页面会导致x-scroll
。
但是 - 如果我删除width
属性(通过Chrome开发人员工具栏)或设置无效值''
- 它就会好起来:
问题:
这样做是否正常:(为了重置值)
<head >
/*The original css file - I dont want to touch it*/
<link href="<%= ResolveUrl("~/Css/style.css") %>" rel="stylesheet" type="text/css" />
<style type="text/css">
html
{
width: '' !important;
}
</style>
P.S。
请不要使用js解决方案。
答案 0 :(得分:2)
要重置该值,您必须使用width
的默认值:
html
{
width:auto;
}
也没有必要使用!important
声明。