1 回答

TA貢獻1898條經驗 獲得超8個贊
是的,這是可能的。你可以這樣做:
.avatar {
height: 256px;
width: 256px;
position: absolute;
}
.dot {
height: 25px;
width: 25px;
border-radius: 100%;
background: blue;
position: absolute;
right: 25px;
bottom: 25px;
}
<div class="avatar">
<img src="http://aux2.iconspalace.com/uploads/smile-icon-256.png">
<div class="dot"></div>
</div>
使用 Ionic 標簽,它看起來像這樣:
超文本標記語言
<ion-avatar>
<img src="http://aux2.iconspalace.com/uploads/smile-icon-256.png"/>
<div class="dot"></div>
</ion-avatar>
CSS
ion-avatar {
height: 256px;
width: 256px;
position: absolute;
}
.dot {
height: 25px;
width: 25px;
border-radius: 100%;
background: blue;
position: absolute;
right: 25px;
bottom: 25px;
}
- 1 回答
- 0 關注
- 186 瀏覽
添加回答
舉報