无法编辑overflow-x:hidden

时间:2014-07-24 01:58:28

标签: php html css wordpress

我有这个html div:

<div style="top: 363px; overflow-x: hidden; width: 1350px;" id="container"></div>

我找不到div所在的位置我想覆盖overflow-x:hidden可能会删除或将其设置为auto。

我做的是:

#container {
    min-height: 300px;
    width: 100%;
    position: absolute;
    overflow-x: scroll;
    display: block;
    overflow-x: auto; 
}

这不起作用。

1 个答案:

答案 0 :(得分:0)

你是说你不能编辑html吗?如果这是真的,那么您可以向css添加!important语句:

#container {
    min-height: 300px;
    width: 100%;
    position: absolute;
    overflow-x: scroll;
    display: block;
    overflow-x: auto !important; 
}

这将覆盖样式。