重置css属性值?

时间:2013-12-26 14:02:19

标签: html css styles

我有一个使用

的css文件的页面
html 
{
 width:100%;
}

但是,Iframe中的该页面会导致x-scroll

enter image description here

但是 - 如果我删除width属性(通过Chrome开发人员工具栏)或设置无效值'' - 它就会好起来:

enter image description here

问题:

这样做是否正常:(为了重置值)

<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解决方案。

1 个答案:

答案 0 :(得分:2)

要重置该值,您必须使用width的默认值:

html
{
    width:auto;
}

也没有必要使用!important声明。