I’m trying to embed an iFrame, and because I set up some CSS using responsive design, I wish to NOT have width=""
and height=""
attributes whatsoever.
When I type this into the HTML editor field..
<iframe src="https://docs.google.com/document/pub?id=1fsm-cvpdfX-8tXauGrQgRmgWONTpX8J3almvZhzBeCA&embedded=true" class="scale-with-grid"></iframe>
And then I switch to visual mode and come back, it immediately removes the class="scale-with-grid"
and changes it to width="320" height="240"
<iframe src="https://docs.google.com/document/pub?id=1fsm-cvpdfX-8tXauGrQgRmgWONTpX8J3almvZhzBeCA&embedded=true" width="320" height="240"></iframe>
How do I avoid this? I used this “Raw HTML” plugin but it didn’t apply to this iframe situation whatsoever.