View Single Post
  #4 (permalink)  
Old Jul 30th, 2007, 15:14
mattblackuk2002 mattblackuk2002 is offline
New Member
Join Date: Jul 2007
Location: norwich
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Padding on inline navigation

Quote:
Originally Posted by MikeHopley View Post
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.
Reply With Quote