I want to vertically middle align the icon and text for the Bootstrap <a>
tag button, my style snippet only works for <button>
tag but fails for <a>
tag.
In the below snippet:
<button>
to perform (my desire style!)<a>
tag to perform.Please note that:
.btn-giant {
display: inline-block;
width: 120px;
height: 120px;
margin-bottom: 8px;
margin-right: 5px;
padding: 10px 15px;
font-size: 12px;
text-align: center;
color: white;
border-radius: 0;
white-space: normal;
}
.btn-giant .glyphicon {
font-size: 36px;
display: block;
margin-bottom: .3em;
}
<link href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.3.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/bootstrap.min.js"></script>
<button class="btn btn-giant btn-primary" onclick="location.href='/Users';">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Users
</button>
<a class="btn btn-giant btn-primary" href="/Mail">
<span class="glyphicon glyphicon-envelope" aria-hidden="true"></span> Mail
</a>
答案 0 :(得分:1)
.btn-giant {
display: flex!important;
flex-direction:column;
justify-content: center;
align-items: center;
float: left;
width: 120px;
height: 120px;
margin-bottom: 8px;
margin-right: 5px;
padding: 10px 15px;
font-size: 12px;
text-align: center;
color: white;
border-radius: 0;
white-space: normal;
}
.btn-giant .glyphicon {
font-size: 36px;
display: block;
margin-bottom: .3em;
}
<link href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.3.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/bootstrap.min.js"></script>
<button class="btn btn-giant btn-primary" onclick="location.href='/Users';">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Users
</button>
<a class="btn btn-giant btn-primary" href="/Mail">
<span class="glyphicon glyphicon-envelope" aria-hidden="true"></span> Mail
</a>
答案 1 :(得分:1)
试用此代码
.btn-giant {
display: inline-block;
width: 120px;
height: 120px;
margin-bottom: 8px;
margin-right: 5px;
padding: 10px 15px;
font-size: 12px;
text-align: center;
color: white;
border-radius: 0;
white-space: normal;
}
.btn-giant .glyphicon {
font-size: 36px;
display: block;
}
#mail span {
position: relative;
top: 25px;
}
.mail-text{
position:relative;
top:30px;
}
<link href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.3.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/bootstrap.min.js"></script>
<button class="btn btn-giant btn-primary" onclick="location.href='/Users';">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Users
</button>
<a id="mail" class="btn btn-giant btn-primary" href="/Mail">
<span class="glyphicon glyphicon-envelope mail" aria-hidden="true"></span><span class="mail-text">Mail</span>
</a>
答案 2 :(得分:0)
您需要在span glyphicon
上添加一个上边距。
工作代码段
.btn-giant {
display: inline-block;
width: 120px;
height: 120px;
margin-bottom: 8px;
margin-right: 5px;
padding: 10px 15px;
font-size: 12px;
text-align: center;
color: white;
border-radius: 0;
white-space: normal;
}
.btn-giant .glyphicon {
font-size: 36px;
display: block;
margin-bottom: .3em;
}
#link {
margin-top:0.45em ;
}
&#13;
<link href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.3.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/bootstrap.min.js"></script>
<button class="btn btn-giant btn-primary" onclick="location.href='/Users';">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Users
</button>
<a class="btn btn-giant btn-primary" href="/Mail">
<span id="link" class="glyphicon glyphicon-envelope" aria-hidden="true"></span> Mail
</a>
&#13;
答案 3 :(得分:0)
.btn-giant {
display: inline-block;
width: 120px;
height: 120px;
margin-bottom: 8px;
margin-right: 5px;
padding: 10px 15px;
font-size: 12px;
text-align: center;
color: white;
border-radius: 0;
white-space: normal;
}
.btn-giant .glyphicon {
font-size: 36px;
display: block;
margin-bottom: .3em;
}
.glyphicon-envelope{
margin : .5em;
}
&#13;
<link href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.3.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/bootstrap.min.js"></script>
<button class="btn btn-giant btn-primary" onclick="location.href='/Users';">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Users
</button>
<a class="btn btn-giant btn-primary" href="/Mail">
<span class="glyphicon glyphicon-envelope" aria-hidden="true"></span> Mail
</a>
&#13;
答案 4 :(得分:-1)
.btn-giant {
display: inline-block;
width: 120px;
height: 120px;
margin-bottom: 8px;
margin-right: 5px;
padding: 10px 15px;
font-size: 12px;
text-align: center;
color: white;
border-radius: 0;
white-space: normal;
}
.btn-giant .glyphicon {
font-size: 36px;
display: block;
margin-bottom: .3em;
}
.ver-mid {
align-items: center;
display: flex;
height: 100vh;
text-align: center;
}
<link href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.3.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/bootstrap.min.js"></script>
<div class="ver-mid">
<button class="btn btn-giant btn-primary" onclick="location.href='/Users';">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span> Users
</button>
<a class="btn btn-giant btn-primary" href="/Mail">
<span class="glyphicon glyphicon-envelope" aria-hidden="true"></span> Mail
</a>
</div>