所以我以前从未设计过iframe样式!显然你抓住了它的元素名称,类或Id,并且它像普通的样式,但是我在使用wordpress插件放置在element.style样式上时遇到了麻烦。必须有一种方法可以使这个iframe比现在更具响应性。
访问website here,然后滚动到底部,点击MORTGAGE CALCULATOR下的“CALCULATE”按钮。我试图给这个iframe一点点响应式触摸,因为它现在没有。
我想如果我只是将它的名字命名为id,那就没关系了,但没有运气!然后我尝试了iframe。
html #MLCalcFrame {
border: 2px solid red !important;
width: 100% !important;
top: 0 !important;
left: 0 !important;
}
html iframe {
width: 100% !important;
border: 2px solid orange;
}
为此iframe添加一些响应式样式的最佳方法是什么?