这是我的iframe
,它包含很多表格。
<iframe id="DlgFramed4906422-9070-4604-bd1b-91c4216b088a" class="ms-dlgFrame" src="/Lists/Interne%20nyheder/DispForm.aspx?ID=68&IsDlg=1" frameborder="0" style="width: 592px; height: 542px;"></iframe>
我正在尝试使用iframe[src^="/Lists/Interne%20nyheder/DispForm.aspx"]
,但它似乎无法在我的页面上运行。
如果我从我的css中删除它,那么下面的代码就可以了。
的CSS
iframe[src^="/Lists/Interne%20nyheder/DispForm.aspx"] {
#MSOZoneCell_WebPartWPQ1 {
.ms-formtoolbar {
display: none;
}
.ms-formtable {
/*width: 70%;*/
tbody {
tr {
td.ms-formlabel {
display: none;
}
}
}
}
}
}
答案 0 :(得分:0)
似乎有一些错误的 else ,但它不是iFrame选择器。我可以验证您用于iFrame的CSS选择器确实在工作。您可以在下面的最小说明性示例中看到这一点。
iframe {
border: 10px solid green !important;
display: block;
width: 200px;
height: 200px;
}
iframe[src^="/Lists/Interne%20nyheder/DispForm.aspx"] {
border: 10px solid blue !important;
}
<iframe src="/Lists/Interne%20nyheder/DispForm.aspx">
</iframe>