“ glyphicon glyphicon-plus”未显示

Joe*_*ott 0 html css twitter-bootstrap

我正在使用Bootstrap 3.0,并且正在使用Twitter Bootstrap Glyphicons。我正在尝试使用“ glyphicon glyphicon-plus”,但是当我将它放在类中时,它没有显示。

在此处输入图片说明

PS我正在使用页面http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css链接到引导程序

码:

我只有一个图标,没有样式。

<button id='b'><span class='glyphicon glyphicon-plus'></span></button>
Run Code Online (Sandbox Code Playgroud)

Cod*_*ely 5

我已附加了一个JSFiddle,其中显示了您提供的代码和CSS链接。

<link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<body>
    <button id='b'>
        <span class='glyphicon glyphicon-plus'></span>
    </button>
</body>
Run Code Online (Sandbox Code Playgroud)

加号按钮按预期显示