我正在使用Bootstrap 3.0,而我正在使用Twitter Bootstrap Glyphicons。我正在尝试使用'glyphicon glyphicon-plus',但是当我放入课堂时,它没有显示。
P.S。我正在使用页面http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css链接到bootstrap
代码:
我只有一个图标,没有造型。
<button id='b'><span class='glyphicon glyphicon-plus'></span></button>
答案 0 :(得分: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>
加号按钮显示为预期
答案 1 :(得分:0)
这是一个非常简单的错误。我忘了添加rel='stylesheet'
和type='text/css'
。