imhiya Posted December 20, 2007 Share Posted December 20, 2007 I'm used to using iframes, but ive being told tables are better for buillding a website, with iframes you could define a webpage to that area. how would i do this in a table like i have a 3 by 3 table and i want the middle page to be news.html how would i go about this? Also i am using dreamweaver for the first time. Link to comment https://forums.phpfreaks.com/topic/82503-how-to-use-tables/ Share on other sites More sharing options...
Dane Posted December 20, 2007 Share Posted December 20, 2007 <table width="#" height="#" cellpadding="0" cellspacing="0" border="0" class="classname"> <tr> <td>Content Here</td> </tr> </table> <table width="#" height="#" cellpadding="0" cellspacing="0" border="0" class="classname"> <tr> <td>Content Here</td> <td>Content Here</td> </tr> </table> <table width="#" height="#" cellpadding="0" cellspacing="0" border="0" class="classname"> <tr> <td>Content Here</td> </tr> <tr> <td>Content Here</td> </tr> </table> Along the lines of that my friend. Link to comment https://forums.phpfreaks.com/topic/82503-how-to-use-tables/#findComment-419380 Share on other sites More sharing options...
imhiya Posted December 20, 2007 Author Share Posted December 20, 2007 how do i put a webpage or php into one of them then not just writing. Link to comment https://forums.phpfreaks.com/topic/82503-how-to-use-tables/#findComment-419558 Share on other sites More sharing options...
ToonMariner Posted December 20, 2007 Share Posted December 20, 2007 tables are terrible for buildin web sites - almost as bad as iframes!!! Go and learn some css layout techniques and leave 1998 behind. Link to comment https://forums.phpfreaks.com/topic/82503-how-to-use-tables/#findComment-419857 Share on other sites More sharing options...
boo_lolly Posted December 21, 2007 Share Posted December 21, 2007 tables aren't as good as CSS, but css is much harder to learn than html tables. and for basic stuff, tables do the trick, iFrames however, are always a bad idea. it's just bad design principle. for that matter, tables are too, now that css is used for everything. but for a beginner, you NEED to learn tables. it's very very simple. check out html tutorials online. all of them will cover tables. Link to comment https://forums.phpfreaks.com/topic/82503-how-to-use-tables/#findComment-420835 Share on other sites More sharing options...
ToonMariner Posted December 22, 2007 Share Posted December 22, 2007 it'll take you 2-3 days of to get to grips with css layouts - and it will be the best time you'll spend in the world of web building.... Link to comment https://forums.phpfreaks.com/topic/82503-how-to-use-tables/#findComment-421233 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.