I have a list as follows :
I am attaching image of so far what i have done.
In this menu,I want to align feedback to right side.
Can anyone tell how to do it?
Answer
Add this to your Css.
li:last-child
will select the last li
of the menu list.
#menu > li:last-child
{
float:right;
}
No comments:
Post a Comment