how to put a border to an iframe in wordpress

2

help!

I need to add a border to an iframe inside the blog entries in wordpress and identified several classes and styles and I add the border in the css and replace them but I do not see the result reflected in the site, what can it be?

<iframe src="http://" class="purina-iframe" style="width: 641px; min-width: 100%; height: 400px; overflow-x: hidden;" frameborder="0" width="641px"></iframe>

Greetings!

    
asked by Kary VDj 30.09.2017 в 04:27
source

1 answer

0

The frameborder attribute of the iframe tag is no longer supported in HTML5. It is done from the CSS. I hope I have helped you:)

<iframe src="http://www.peru.gob.pe" class="purina-iframe" style="width: 500px; height: 300px; overflow-x: hiden; border:5px solid peru;"></iframe>
    
answered by 30.09.2017 в 09:46