• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

div layout

Bigbacon

Fully [H]
2FA
Joined
Jul 12, 2007
Messages
22,600
I am trying to create a layout using only DIVs that mimics this

HTML:
<table border="1"><tr><td rowspan=2>ppp</td><td>ooo</td></tr><tr><td>iii</td></tr></table>
 
I think you want something like this?
Code:
<div style="border: 1px solid #ccc; float: left;">ppp</div>
<div style="border: 1px solid #ccc; float: left;">
	<div style="border: 1px solid #ccc;">ooo</div>
	<div style="border: 1px solid #ccc;">iii</div>
</div>
 
Back
Top