Resizing iframe causes inconsistent border color

2019-09-08 05:21发布

<iframe src="http://google.com" height="650" width="350"></iframe>

enter image description here

How to get rid of the inconsistent border colors?

标签: iframe
1条回答
SAY GOODBYE
2楼-- · 2019-09-08 05:37

That's because you have two different border colors: The border colors of the frame itself and the border colors of the scrollbars. You can disable the border altogether by adding the frameborder=0 attribute. Admittedly, that's like curing a headache with a gun, but it works.

查看更多
登录 后发表回答