Bootstrap 2.3.2中的GLYPHICONS

时间:2015-07-19 02:51:33

标签: twitter-bootstrap glyphicons

如何在Bootstrap 2.3.2中使用GLYPHICONS?我已经下载了Glyphicons ZIP。但我不知道如何安装它。请有人帮帮我吗?

1 个答案:

答案 0 :(得分:4)

文档页面显示了如何: http://getbootstrap.com/2.3.2/base-css.html#icons

我最初不想回答这个问题,而是发表评论,但我没有足够的声誉。如果这不是您所追求的,请详细说明您的情况。

更新

以下是一个按钮中带有“搜索”图标的工作示例:

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" href="css/bootstrap.min.css">
    <style>
        body {
            margin-top: 60px;
        }
    </style>
</head>
<body>
    <div class="container">
        <button class="btn btn-large" type="button"><i class="icon-search"></i> Search</button>
    </div>
</body>
</html>

以下是相应的结果:

Screenshot of code