iframe | 删除边框
默认情况下,iframe周围有边框。要删除边框,请添加
style属性并使用CSS
border属性: 例如:
<iframe src="https://www.cainiaoya.com/" style="border:none;"></iframe>
尝试一下
使用CSS,您还可以更改iframe边框的大小,样式和颜色:
<iframe src="https://www.cainiaoya.com/" style="border:3px solid green;"></iframe>
尝试一下