Does anyone know how to get 2 html tables to sit side by side?
I have 2 tables each with 3 columns and I'd like to have them right next to eachother but can't seem to get it down.
nest them into one table
<table>
<tr>
<td>
<table align="left">
<tr>
<td>one</td>
</tr>
</table>
</td>
<td>
<table align="right">
<tr>
<td>two</td>
</tr>
</table>
</td>
</tr>
</table> ---------------------------------------
{ str = "sleep is good for you. sleep gives you the energy you need to function";
ptr = /sleep/gi;Nstr = str.replace(ptr,"coffee"alert(Nstr); }
---------------------------------------
for the best results to your questions: FAQ333-2924
Or use stylesheet properties:
<table style="display:inline">
You need it in both tables, because by default tables have line breaks before and after.
Hope I helped / Thanks for helping
if ((Math.abs(x)<10&&Math.abs<10) &&(((parseIntx.toString()+y.toString())-x-y)%9)!=0)){alert("I'm a monkey's uncle"}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.