Quote:
Originally Posted by MikeHopley
You can't apply float and positioning to the same element. They are mutually exclusive; if I recall correctly, the positioning will override the floating.
If you want it at the bottom right of the header, you could use:
- Code: Select all
position: absolute;
bottom: 0;
right: 0;
|
I didn't apply them both to the same element - I just explained it badly! The float was to the list inside the absolute div.