Saturday 10 November 2018

css - Make an item in list align to right using CSS3



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.




Demo



#menu > li:last-child
{
float:right;
}

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...