按钮内的 Glyphicon 不可见
Glyphicon inside button not visible
我想把字形放在按钮里面。我不知道为什么它不可见。唯一可见的是文本,而不是字形。
Here 就是例子。这个按钮有问题:
<button type="button" class="btn btn-primary">
<span class="glyphicon glyphicon-arrow-up"></span>3</button>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<button type="button" class="btn btn-primary">
<span class="glyphicon glyphicon-arrow-up"></span> 3 </button>
使用w3schools的工作示例
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Glyphicon Examples</h2>
<button type="button" class="btn btn-primary">
<span class="glyphicon glyphicon-arrow-up"></span> 3
</button>
</div>
</body>
</html>
我想把字形放在按钮里面。我不知道为什么它不可见。唯一可见的是文本,而不是字形。
Here 就是例子。这个按钮有问题:
<button type="button" class="btn btn-primary">
<span class="glyphicon glyphicon-arrow-up"></span>3</button>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<button type="button" class="btn btn-primary">
<span class="glyphicon glyphicon-arrow-up"></span> 3 </button>
使用w3schools的工作示例
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Glyphicon Examples</h2>
<button type="button" class="btn btn-primary">
<span class="glyphicon glyphicon-arrow-up"></span> 3
</button>
</div>
</body>
</html>