absorption
03-08-2005, 10:58 PM
i've got a masthead div that i've created:
#masthead{
position: relative;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 70px;
background-color: #000000;
}
straightforward.
in my html, i spec the masthead div and have a set of 3 graphics inside it that start from the left of the masthead. i have another graphic that i want to be aligned at the right side of the masthead. (the overall effect is like a two column table, where the contents of the left side cell are left aligned, the righ side cell are right aligned.
what is the simplest way to achieve this?
i've tried using float and some other ideas, but these commands, while making the graphic right-aligned, drop it below, outside the masthead.
thanks for the help.
#masthead{
position: relative;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 70px;
background-color: #000000;
}
straightforward.
in my html, i spec the masthead div and have a set of 3 graphics inside it that start from the left of the masthead. i have another graphic that i want to be aligned at the right side of the masthead. (the overall effect is like a two column table, where the contents of the left side cell are left aligned, the righ side cell are right aligned.
what is the simplest way to achieve this?
i've tried using float and some other ideas, but these commands, while making the graphic right-aligned, drop it below, outside the masthead.
thanks for the help.