數字有個位數到百位數
padding:10px;
background-color:#F00;
color:#fff;
border-radius:50%;
<span class="alert">9</span>
<span class="alert">999</span>
如何讓它保持正圓的同時
當有數字時不變形? 個位數和百位數
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
网上找了个
http://jsfiddle.net/zcd75Lcd/
你要行把span设置为block 设置个宽高像下面的样式
width: 30px;
height: 30px;
background-color: #F00;
color: #fff;
border-radius: 50%;
display: block;
text-align: center;
line-height: 30px;