Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Other Programming › Web Languages › div vs table layouts

div vs table layouts

Posts 1–15 of 15 · Page 1 of 1
GG2GG
GG2GG
div vs table layouts
tables

pros
------
fast and easy
the standard output for sliced image maps in photoshop
cons
------
slow
looks messy, thus slowing your development time
from html 3.2 or some shit ¬_¬

<div>

pros
-----
intergrated with css
faster than tables
easyer to navigate and read when returning to change code

cons
-----
may require a brain


ive personal decided to take the time to expand my knowllage in <div> tags and general css however this may not be the best option.

id like to know some other views more importantly compare the choice to there intellegence ¬_¬
#1 · 17y ago
Czar
Czar
Div for the win.
Ohai again Greg.
#2 · 17y ago
GG2GG
GG2GG
Quote Originally Posted by Czar View Post
Div for the win.
Ohai again Greg.
Stfu div for the win

how about iframe vs framesets?
#3 · 17y ago
Czar
Czar
Quote Originally Posted by English View Post
Stfu div for the win

how about iframe vs framesets?
Yay for Iframe being retarded and easy for lazy ppls. =D
#4 · 17y ago
iHolyElement
iHolyElement
Quote Originally Posted by English View Post
iframe vs framesets?
dont be retarded.
As a web&graphic designer i would recommend DIV instead of TABLE.
im not going to waste my time getting into it, but trust me.
#5 · 16y ago
GI
Gilcrow
Quote Originally Posted by iHolyElement View Post
dont be retarded.
As a web&graphic designer i would recommend DIV instead of TABLE.
im not going to waste my time getting into it, but trust me.
necro, i was telling czar to stfu, only time ive used tables is when taking output from photoshop
#6 · 16y ago
BL
BloodSkin
tables are good for single file sites and simplicity as well as stuff like schedules, divs are good for fine tuning and absolute positioning.
#7 · 16y ago
CA
Calculating Infinity
Quote Originally Posted by BloodSkin View Post
tables are good for single file sites and simplicity as well as stuff like schedules, divs are good for fine tuning and absolute positioning.
tables suck all the time, there messy and gay.

plus this was more to give information to those who dont know how to use either, so they know what they should learn.
#8 · 16y ago
Alen
Alen
Quote Originally Posted by Calculating Infinity View Post
tables suck all the time, there messy and gay.

plus this was more to give information to those who dont know how to use either, so they know what they should learn.
Partially true. Tables are still widely in use for emails though, as many popular clients can't render div layouts all that well (that also includes Outlook).

Other than that yes, divs are superior and it's easy to make a table-like layout. Now, if we want to make it similar in structure (talking about the basic structure here):

[html]<table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>[/html]

we can make the following div layout:

[html]<div>
<div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
</div>
</div>[/html]

And use some CSS:

Code:
div > div {
	overflow: auto;
}
	div > div > div {
		float: left;
		width: 33%;
	}
	div > div > div:last-child {
		width: 34%;
	}
I think that should work, sorry if I did anything wrong, I just woke up

Edit: forgot a ; in the css :S
#9 · edited 16y ago · 16y ago
GI
Gilcrow
Quote Originally Posted by m3 View Post
Partially true. Tables are still widely in use for emails though, as many popular clients can't render div layouts all that well (that also includes Outlook).

Other than that yes, divs are superior and it's easy to make a table-like layout. Now, if we want to make it similar in structure (talking about the basic structure here):

[html]<table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>[/html]

we can make the following div layout:

[html]<div>
<div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
</div>
</div>[/html]

And use some CSS:

Code:
div > div {
	overflow: auto;
}
	div > div > div {
		float: left;
		width: 33%;
	}
	div > div > div:last-child {
		width: 34%;
	}
I think that should work, sorry if I did anything wrong, I just woke up

Edit: forgot a ; in the css :S
shaddap

anyway bitch git on my dev team
#10 · 16y ago
Alen
Alen
Quote Originally Posted by Greg View Post


shaddap

anyway bitch git on my dev team
Your dev team...?
#11 · 16y ago
CA
Calculating Infinity
Quote Originally Posted by m3 View Post
Your dev team...?
yea im making a dev team, fmmmmmmmmm
#12 · 16y ago
GR
Greg
I use divs now anyway, there much better for layouts. They tend to load faster.
Most neewbies get into table habits because of photoshops optimize for the web function..I did
#13 · 16y ago
CA
Calculating Infinity
Quote Originally Posted by V I R U S View Post
I use divs now anyway, there much better for layouts. They tend to load faster.
Most neewbies get into table habits because of photoshops optimize for the web function..I did
there is no difference in loading speed
#14 · 16y ago
Alen
Alen
Quote Originally Posted by Calculating Infinity View Post
there is no difference in loading speed
True, maybe he meant rendering speed But even then I'm not so sure there's much of a noticable difference. The only reason why divs are so much more popular is their standardization or whatever you want to call it. They work the same way in nearly every browser, whereas tables can differ.
#15 · 16y ago
Posts 1–15 of 15 · Page 1 of 1

Post a Reply

Similar Threads

  • Maple Story Cheat tableBy zenos in MapleStory Hacks, Cheats & Trainers
    0Last post 19y ago
  • Layouts, Backgrounds, Siggies for you!By ndk721 in WarRock - International Hacks
    4Last post 18y ago
  • CS 1.6 score tableBy IIDracula in General
    8Last post 18y ago
  • [RELEASE] Comabt Arms UCE Table (UPDATED)By pownage017 in Combat Arms Hacks & Cheats
    96Last post 18y ago
  • [Tutorial] How to use a cheat table(CT)By Combatant in Combat Arms Hacks & Cheats
    28Last post 18y ago

Tags for this Thread

#div#layouts#table