html - How do I place an iframe and a div side by side? -


beginner htmler here. trying edit churches website. use dacast stream , chatwing 1 on top of over

i want place them side side. help.

you need use css in order correctly. if unfamiliar css beginner, must effective.

in html:

<div id="wrapper">     <div>content</div>     <iframe src="urlhere"></iframe> </div> 

and css:

#wrapper div, iframe {     float: left; } 

but if cannot use css, can use table. method not recommended.

<table>     <tr>     <td><div>content</div></td>     <td><iframe src="dacast"></iframe></td>     </tr> </table> 

Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -