2

我正在使用 tawdis 在线工具来验证WCAG 2.0 AA 级兼容性。我面临一个错误

“网页格式良好”

,当我使用下面的代码时。如何在 WCAG 验证中修复此错误?

<iframe title="brady-flanary video1" width="100%" height="350" src="https://www.youtube.com/embed/T4isjKuMdQA" frameborder="0" allowfullscreen></iframe>
4

1 回答 1

2

我已通过allowfullscreen从 <iframe> 中删除属性来解决此问题

<iframe title="brady-flanary video1" width="100%" height="350" src="https://www.youtube.com/embed/T4isjKuMdQA" frameborder="0"></iframe>
于 2016-06-10T06:15:04.807 回答