我正在为学校进行测验,我在其中使用了YouTube视频。我周围已经有了边框,但你也可以改变颜色吗?如果有可能,怎么样?
(抱歉我的英语不好)
问候, 来自荷兰的一个女孩
答案 0 :(得分:3)
您可以使用CSS border
属性。您可以在此处阅读有关这些选项的更多信息https://developer.mozilla.org/en-US/docs/Web/CSS/border
iframe {
border: 1em solid red;
}

<iframe width="560" height="315" src="https://www.youtube.com/embed/QuMGc0EswTc" frameborder="0" allowfullscreen></iframe>
&#13;
答案 1 :(得分:1)
只需使用以下CSS:
iframe {
border: 2px solid red;
}
<iframe src="https://www.w3schools.com"></iframe>
您可以根据需要更改样式。祝你好运!