简单教程
提交运行
代码编辑器:
<!DOCTYPE htm> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.js"></script> <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <style>body {margin:20px}</style> <h2>Hand-Right Glyph</h2> <p>Hand-Right icon: <span class="glyphicon glyphicon-hand-right"></span></p> <p>Hand-Right icon as a link: <a href="#"> <span class="glyphicon glyphicon-hand-right"></span> </a> </p> <p>Hand-Right icon on a button: <button type="button" class="btn btn-default btn-sm"> <span class="glyphicon glyphicon-hand-right"></span> Hand-Right </button> </p> <p>Hand-Right icon on a styled link button: <a href="#" class="btn btn-info btn-lg"> <span class="glyphicon glyphicon-hand-right"></span> Hand-Right </a> </p>
运行结果: