glyphicon-menu-right - HTML CSS Bootstrap Glyphicon

HTML CSS examples for Bootstrap Glyphicon:glyphicon-menu-right

Description

glyphicon-menu-right

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  </head><!--from  w  w w . j  a  v a 2  s. co m-->
  <body>
    <div class="container">
      <h2>Menu-right Glyph</h2>
      <p>Menu-right icon: <span class="glyphicon glyphicon-menu-right"></span></p>
      <p>Menu-right icon as a link:
        <a href="#">
          <span class="glyphicon glyphicon-menu-right"></span>
        </a>
      </p>
      <p>Menu-right icon on a button:
        <button type="button" class="btn btn-default btn-sm">
          <span class="glyphicon glyphicon-menu-right"></span> Menu-right
        </button>
      </p>
      <p>Menu-right icon on a styled link button:
        <a href="#" class="btn btn-info btn-lg">
          <span class="glyphicon glyphicon-menu-right"></span> Menu-right
        </a>
      </p>
      <p>Unicode:
        <span class="glyphicon">&amp;#xe258;</span>
      </p>
    </div>
  </body>
</html>

Related Tutorials