---------------------------------
menu
---------------------------------|
content |Feeds |
| |
| |
---------------------------------|
I would like to use div to separate content and Feeds that way instead of using a table
I have tried
css.
#left
{
clear:left;
float:left;
position:fixed;
}
#right
{
float:right;
position:absolute;
}
html.
<div>
<div id="left">Content</div>
<div id="right"> Feeds</div>
</div>
Check this out.