我想让全球象形文字更大,以便它覆盖页面的很大一部分(这是一个矢量图像)。它不是在一个按钮或任何东西;它只是孤独。有办法做到这一点吗?
<div class = "jumbotron">
<span class="glyphicon glyphicon-globe"></span>
</div>
我想让全球象形文字更大,以便它覆盖页面的很大一部分(这是一个矢量图像)。它不是在一个按钮或任何东西;它只是孤独。有办法做到这一点吗?
<div class = "jumbotron">
<span class="glyphicon glyphicon-globe"></span>
</div>
当前回答
尽量使用标题,不需要额外的CSS
<h1 class="glyphicon glyphicon-plus"></h1>
其他回答
例如… 添加类:
BTN-LG - 大型
BTN-SM - 小型
btn-xs -非常小
<button type=button class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-star" aria-hidden=true></span> Star
</button>
<button type=button class="btn btn-default">
<span class="glyphicon glyphicon-star" aria-hidden=true></span>Star
</button>
<button type=button class="btn btn-default btn-sm">
<span class="glyphicon glyphicon-star" aria-hidden=true></span> Star
</button>
<button type=button class="btn btn-default btn-xs">
<span class="glyphicon glyphicon-star" aria-hidden=true></span> Star
</button>
参考链接引导:Glyphicons引导
如果你使用bootstrap和font-awesome,那么它很简单,不需要写一行新代码,只需添加fa-Nx,大到你想要的,见演示
<span class="glyphicon glyphicon-globe"></span>
<span class="glyphicon glyphicon-globe fa-lg"></span>
<span class="glyphicon glyphicon-globe fa-2x"></span>
<span class="glyphicon glyphicon-globe fa-3x"></span>
<span class="glyphicon glyphicon-globe fa-4x"></span>
<span class="glyphicon glyphicon-globe fa-5x"></span>
尽量使用标题,不需要额外的CSS
<h1 class="glyphicon glyphicon-plus"></h1>
Fontawesome有一个完美的解决方案。
我实现了同样的方法。只要在你的主。css文件中添加这个
.gi-2x{font-size: 2em;}
.gi-3x{font-size: 3em;}
.gi-4x{font-size: 4em;}
.gi-5x{font-size: 5em;}
在你的例子中,你只需要这样做。
<div class = "jumbotron">
<span class="glyphicon glyphicon-globe gi-5x"></span>
</div>
增加字形的字体大小,以增加所有图标的大小。
.glyphicon {
font-size: 50px;
}
要只瞄准一个图标,
.glyphicon.glyphicon-globe {
font-size: 75px;
}