0

我不做 CSS,刚才这就是为什么我很难调整这个.. 我的弹出窗口使用 Iframe 有问题。在 css 中有这样的样式:

iframe {
    border:none;
    height:440px;
    margin-left:4px;
    margin-right:4px;
    **min-width:760px;**
    overflow:auto;
    width:98%;
}

当像这样查看页面时,它会生成一个 html:

<div style="left: 404px; top: 75px; visibility: visible; position: absolute; overflow: visible; clip: rect(auto auto auto auto); " class="dialogPanel"><div class="">.....</div>

这就是为什么无论我如何在后面的代码中设置高度,它都不会相应地调整大小:

 profileFrame = new Frame(url);

        profileFrame.setHeight("350px");
        profileFrame.setWidth("450px");
        panel.add(profileFrame);

        content.add(panel);

但是当我从 CSS iframe 中删除 min-width 时,它已经根据我的意愿调整了大小。

问:我的这个特定 iframe 如何不使用 iframe 样式?我不想删除最小宽度,因为应用程序中的所有 iframe 都在使用这种样式。

我尝试通过 using 删除它 profileFrame.removeStyleName("iframe"),我还尝试了所有其他可用的 removestyle 方法,但没有奏效。有什么建议吗?谢谢

4

1 回答 1

1

您已为此 iFrame 设置了一个类,因此请尝试

iframe .dialogPanel {
min-width: 0px;
}

这将使只有“dialogPanel”类的 iframe 没有最小宽度,其余的将保留它们的最小宽度

于 2012-08-01T08:31:09.803 回答