So is there any difference in this:
<iframe src="iframe.html" width="100" height="100"></iframe>
and this:
<iframe src="iframe.html" style="width: 100px; height: 100px;"></iframe>
Both are supported in HTML5 and I wonder which one is better/reccomended? Any suggestions?