A little CSS help?

z.m123's picture
Can someone give me the CSS code for a div table?
I would be grateful! ♥
z.m123's picture

Bumpery

Bumpery
Unplugged's picture

your request is a bit

your request is a bit ambiguous to me. do you want a div box, or a table? or do you want a table with div boxes next to each other? and if that's it, how many divs do you want?
z.m123's picture

Like, the table with div

Like, the table with div boxes? Two up and two down. -Is bad at explaining- ;u;
Unplugged's picture

Something like this? You'll

Something like this? You'll have to play with the numbers there.


div 1
div 2
div 3
div 4


<div style="width:750px;">
<table style="border:hidden">
<tr>
<td> <div style="width:300px; height:130px; overflow:auto; background: #253128; border: 2px solid #264135; text-align:justify; padding:10px; font: 11px georgia; letter-spacing:1pt;"> div 1 </div> </td>
<td> <div style="width:300px; height:130px; overflow:auto; background: #253128; border: 2px solid #264135; text-align:justify; padding:10px; font: 11px georgia; letter-spacing:1pt;"> div 2 </div></td>
</tr>
<tr>
<td> <div style="width:300px; height:130px; overflow:auto; background: #253128; border: 2px solid #264135; text-align:justify; padding:10px; font: 11px georgia; letter-spacing:1pt;"> div 3 </div></td>
<td> <div style="width:300px; height:130px; overflow:auto; background: #253128; border: 2px solid #264135; text-align:justify; padding:10px; font: 11px georgia; letter-spacing:1pt;"> div 4 </div></td>
</tr>
</table>
</div>
z.m123's picture

Ohh, thank you. &hearts; I'll

Ohh, thank you. ♥
I'll play with them. C: