lillPrayeda
New Member
how do i embed a youtube video to a table. i want the left and right columns to be 2 rows high and the middle column to have 2 cells, i want the video in the bottom cell, and the text in the top but i cant figure out how to move it there\[code\]<div class="cbody"> <table class="ctable"> <tr> <td rowspan="2" style="width:105px"><img class="cimg1" src="http://stackoverflow.com/questions/15538241/meh.png" alt=" " width="100px" height="500px"></td> <td><p class="ctxt"> my text here </p></td> <td rowspan="2" style="width:105px"><img class="cimg2" src="http://stackoverflow.com/questions/15538241/meh.png" alt=" " width="100px" height="500px"></td> </tr> <tr> <iframe width="420" height="315" src="http://www.youtube.com/embed/xI_6oLPC-S0" frameborder="0" allowfullscreen></iframe> </tr> </table> </div>\[/code\]and the css...\[code\].cbody {width:800px;margin-left: auto;margin-right: auto;border-style:solid;border-width:3px;}.cimg1 {padding-left:5px;padding-top:5px;padding-bottom:5px;float:left;}.cimg2 {padding-left:5px;padding-top:5px;padding-bottom:5px;float:right;}.ctxt {margin-left:5px;margin-right:5px;text-align:center;}.ctable {width:800px;margin-left:auto;margin-right: auto;border-style:solid;border-width:2px;}\[/code\]