EN
HTML - depricated frameborder attribute
1
answers
0
points
When I try to embed YouTube iframe I get the following error:
The frameborder attribute on the iframe element is obsolete. Use CSS instead.
How can I fix this?
1 answer
0
points
Instead of using frameborder like:
<iframe frameborder="0" />
use style attribute to apply CSS in the following way:
<iframe style="border: 0px;" />
or equivalent:
<iframe style="border: none;" />
0 comments
Add comment