編碼的世界 / 優質文選 / 生涯

CSS自適應實現圖標右上角消息數字提示


2022年7月11日
-   

效果如下:一共改過兩次 改後
改前:存在的問題 當數值為一位數時,底部應該是一個完整的圓形
//改前
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
.msg {
position: relative;
width: 60px;
height: 60px;
margin: 60px;
float:left;
}
.msg img {
width: 60px;
height: 60px;
}
.alarm {
position: absolute;
color: white;
font-size: 17px;
background-color: red;
/*height: 24px;改前*/
min-height: 24px;/*改後新增的代碼*/
min-width:24px;/*改後新增的代碼*/
line-height: 24px;
right:-12%;
top: -12px;
text-align: center;
-webkit-border-radius: 24px;
border-radius: 24px;
padding:2px;
}
</style>
</head>
<body>
<div class="msg">
<img src="img/1.png" />
<div class="alarm">
50000
</div>
</div>
</body>
</html>

最後附上,min-height和min-width的使用場景 https://blog.csdn.net/qq_36337754/article/details/97243930

熱門文章