我如何使象形文字更大?(改变大小?)

我想让全球象形文字更大,以便它覆盖页面的很大一部分(这是一个矢量图像)。它不是在一个按钮或任何东西;它只是孤独。有办法做到这一点吗?

<div class = "jumbotron">
<span class="glyphicon glyphicon-globe"></span>
</div>
422188 次浏览

增加glyphicon的font-size来增加所有图标的大小。

.glyphicon {
font-size: 50px;
}

要只瞄准一个图标,

.glyphicon.glyphicon-globe {
font-size: 75px;
}

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>

尽量使用标题,不需要额外的CSS

<h1 class="glyphicon glyphicon-plus"></h1>

如果你使用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>

For ex .. 添加类:

btn-lg - LARGE

btn-sm - SMALL

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引导

是的,基本上你也可以使用内联样式:

<span style="font-size: 15px" class="glyphicon glyphicon-cog"></span>

为此,我使用了引导头类(“h1”,“h2”等)。通过这种方式,您可以在不使用实际标签的情况下获得所有样式的好处。这里有一个例子:

<div class="h3"><span class="glyphicon glyphicon-tags" aria-hidden="true"></span></div>