I am creating a page that I want to have a border around the entire contents.
I am stuck on the outer border. Whenever I try to float any of the inner elements the border collapses on itself.
Thanks for the help. (the page is not on the a public server other wise I'd share that. If you need full HTML CSS I can provide most of it)
Code:
+--------------------------+
| ************* |
| +--+ +----------------+ |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| +--+ +----------------+ |
| ************ |
+--------------------------+
Code:
/* top stars in pic*/
#top{width:80%;;margin-right:20px;float:right}
#left{width:20%;height:auto;margin-left:20px;float:left}
/* Large Area in pic */
/* generated from DB */
#mainImg {width:75%;height:auto;float:right;text-align:center;color:#FFFFFF;font-size:11px;font-family:Arial, Helvetica, sans-serif;}
/*bottom stars in pic */
#bottom{width:100% margin:0 20px; float:left;clear:both;}
Thanks for the help. (the page is not on the a public server other wise I'd share that. If you need full HTML CSS I can provide most of it)