aximbigfan Posted October 25, 2008 Share Posted October 25, 2008 Hi, I need to create a sort of table, listed below in lovely ASCII art. +-------+----------------+ | | | | +----------------+ | | | +-------+----------------+ EDIT: the "table" got messed up, but you get the idea. What is the best way of doing this? Thanks, Chris Link to comment https://forums.phpfreaks.com/topic/130037-3-field-table/ Share on other sites More sharing options...
dropfaith Posted October 25, 2008 Share Posted October 25, 2008 im not sure what you need here did you mean this +-------+----------------+ | | | | +----------------+ | | | +-------+----------------+ if so i would do divs you will need to look up floats http://css.maxdesign.com.au/floatutorial/tutorial0916.htm Link to comment https://forums.phpfreaks.com/topic/130037-3-field-table/#findComment-674275 Share on other sites More sharing options...
dropfaith Posted October 25, 2008 Share Posted October 25, 2008 its not complete but it gives you the basic idea and form of it all <style> div.contain {90%;margin:0 auto;} div.left {width:30%;float:left} div.right{float:right;width:69%} </style> <div class="contain"> <div class="left"> left side stuff </div> <div class="right"> <div> top div content in right </div> <div> bottom div </div> </div> </div< Link to comment https://forums.phpfreaks.com/topic/130037-3-field-table/#findComment-674277 Share on other sites More sharing options...
aximbigfan Posted October 25, 2008 Author Share Posted October 25, 2008 Yep, this is exactly what I need! This is for a PHP RSS reader. Lemme know if you want a copy of the source. Chris Link to comment https://forums.phpfreaks.com/topic/130037-3-field-table/#findComment-674411 Share on other sites More sharing options...
dropfaith Posted October 25, 2008 Share Posted October 25, 2008 i kinda am intersted plus i got some time so ill play with the layout a bit but a php rss reader might be something i can use Link to comment https://forums.phpfreaks.com/topic/130037-3-field-table/#findComment-674413 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.