我想要的風格號界內,但因爲它在iOS上看起來不一樣在Chrome中。在iOSCSS的圓的內部編號,位置是關閉的iOS
在Chrome預覽
預覽
通知的號碼不垂直居中在iOS。
是的,我已經嘗試添加vertical-align: center;
但它不會伎倆。
這裏是我的CSS
.circle {
display: inline-block;
text-decoration: none;
width: 20px;
height: 10px;
padding: 3px;
background: #7DBCD8;
border: 1px solid #599DBB;
color: #FFF;
text-align: center;
vertical-align: top;
margin: 3px 3px 0 0;
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
與HTML
<span class="circle">5</span>
<span class="circle">15</span>
<span class="circle">125</span>
這裏是一個JS Fiddle of this example。我怎樣才能讓這看起來像iOS一樣?
我也嘗試了各種哪些是原產於iOS的其他字體,但仍問題仍然存在。
他們有點(Win7,最新的Chrome):http://d.pr/i/Vebv – swiss196