HTML CSS examples for CSS Widget:Menu Item
Create menu with one item aligned to right
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> #dvParent {<!--from w w w . j av a 2 s.c om--> border-bottom:2px solid Chartreuse; } </style> </head> <body> <div id="dvParent"> <div style="float:left"> Link | Link | Link </div> <div style="float:right"> Image </div> <div style="clear:both;"></div> </div> </body> </html>