如何让字体真棒图标变得像这个页面一样大:
http://fontawesome.io/icon/bath/
我使用的是fa-5x类,但它与页面示例中的最大图标不同。
下面是我使用的html和css,我试图做的更大的图标是最后的浴缸
感谢
.container-fluid{
height:50%;
}
#run{
background-color:green;
height:1000px;
}
.red{
background-color:red;
}
.green{
background-color:green;
}
.blue{
background-color:blue;
}
.reg{
height:400px;
}
.big{
height:1000px;
}
.pigi{
color:red;
font-size:225em;
}

<!DOCTYPE html>
<html>
<head>
<title>example page</title>
<meta name="description" content="example page">
<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>
<link rel="stylesheet" href="/Users/tomer/Desktop/test page/first.css">
<link rel="stylesheet" href="/Users/tomer/Desktop/font-awesome-4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-----navigation bar------->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a href="" class="navbar-brand">HelloMan</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Page 1<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Page 1</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
</ul>
</li>
<li><a href="#">Page 2</a><span class="glyphicon glyphicon-eur"></span></li>
<li><a href="#">Page 3</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-music"></span></a></li>
<li><a href="#"><span class="glyphicon glyphicon-eur"></span></a></li>
</ul>
</div>
</nav>
<!-----end navigation------>
<div class="container-fluid" >
<h1 style="text-align:center;">Example page</h1>
<div class="row">
<div class="col-md-4 blue big">
brushes
</div>
<div class="col-md-4 red reg">
Tishues
</div>
<div class="col-md-4 green reg">
Gunners
</div>
</div>
<i class="fa fa-bath pigi" aria-hidden="true"></i>
</div>
</body>
</html>
&#13;
答案 0 :(得分:1)
字体真棒图标与其他字体相同,您可以将CSS应用于它们。
.fa-ICON_NAME{
font-size: 50px;
}
答案 1 :(得分:1)
在您的
中添加额外的课程 <i class="fa fa-example extraClass"></i>
和你的css:
.extraClass{
font-size:50px;
}
或任何适合您的尺码。
你的问题很模糊。 更好地提供一个jsfiddle。