0

In the following code

<html>
    <head>
        <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">
    </head>
<body>
<span class="glyphicon glyphicon-glass"></span>
<span class="glyphicon glyphicon-cutlery"></span>
<span class="glyphicon glyphicon-wrench"></span>
</body>
</html>

The first two icons display perfectly but there is some error with the wrench. Based on the documentation here:

http://getbootstrap.com/components/

'wrench' should be a valid icon. How can I get the wrench to display?

Hoa
  • 19,858
  • 28
  • 78
  • 107

2 Answers2

4

There wasn't a glyphicon-wrench in 3.0.0..

http://www.bootply.com/rvIujXrVQ7

But there is now..

http://www.bootply.com/WwpyWuQTr3

Carol Skelly
  • 351,302
  • 90
  • 710
  • 624
0

Presumably you're using old Android and are encountering https://github.com/twbs/bootstrap/issues/10106 , which was fixed in Bootstrap v3.0.1.

The underlying cause is explained in this SO thread: WebKit CSS content Unicode bug?

Community
  • 1
  • 1
cvrebert
  • 9,075
  • 2
  • 38
  • 49