Align an anchor to the right - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:a

Description

Align an anchor to the right

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <title>anchor right align</title> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!-- w w w.  j  a v  a2 s  . co m-->
 <body> 
  <div> 
   <a href="#Equipment" class="ui-btn ui-shadow ui-corner-all ui-btn-inline ui-mini">Equipment</a> 
   <a href="#Model" class="ui-btn ui-shadow ui-corner-all ui-btn-inline ui-mini" style="float:right">Model</a> 
  </div>  
 </body>
</html>

Related Tutorials