我試圖使用twitter引導創建「從App Store下載」按鈕。在引導按鈕中自定義文本大小
我遇到的問題是試圖使「App Store」文本比它上面的「從下載」文本更大。
這裏是我使用的HTML和CSS。
.fixed-hero .hero-text {
padding-top: 90px;
width: 65%;
color:#fff;
font-family: Century Gothic, sans-serif;
font-size: 2.2em;
line-height: 1.5em;
}
.fixed-hero .hero-button {
padding-top: 60px;
width: 65%;
}
.btn.btn-large.btn-danger{
border-style:solid;
border-width:1px;
border-color:#fff;
background-image: linear-gradient(to bottom, rgb(204, 81, 81), #990000);
text-align: left;
}
<div class="hero-button text-center">
<a href="#" class="btn btn-large btn-danger">
<i class="icon-apple icon-3x pull-left"></i>
<div>
Download from the
App Store
</div>
</a>
</div>
我很欣賞反饋和專業知識。
但和「應用商店」從下載「的事情是相同的文本節點。你不能混合這樣的風格。您需要將它們分解爲單獨的節點以擁有兩個單獨的樣式。 –
你可以使用twitter引導包裝按鈕文字Word http://stackoverflow.com/questions/18996202/twitter-bootstrap-button-text-word-wrap –