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 Quote Link to comment 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 Quote Link to comment 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< Quote Link to comment 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 Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.