Page is a not externally linkable
Vanessa - 6:06 am on Aug 15, 2002 (gmt 0)
/* parent div */ /* left column */ /* centre column */ /* right column */
If I use position: relative how do I get columns to sit across the page, aligned across the top. Here is my code:
#corners{
border: #000000 solid 1px;
background-color: #0000ff;
width: 100%
}
#cornersleft{
border: #000000 solid 1px;
background-color: #00ccff;
width: 180px;
height: 100%;
position: relative;
left: 0px
}
#cornerscenter{
border: #000000 solid 1px;
background-color: #ffffff;
margin: 0px 180px 0px 180px;
height: 100%;
position: relative
}
#cornersright{
border: #000000 solid 1px;
background-color: #00ccff;
width: 180px;
height: 100%;
position: relative;
right: 0px
}