Create menu with one item aligned to right - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Menu Item

Description

Create menu with one item aligned to right

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials