1
2
3
4
5
6
7
8
9
#plurk-dashboard .dash-segment-profile #dash-profile .profile-icons {
text-align:right;
width:120px; /*想放的圖片"區域"總寬度 + 20px*/
height:50px; /*想放的圖片"區域"總高度*/
background: url('圖片網址1') no-repeat, url('圖片網址2') no-repeat; /*一個以上,隔開*/
background-position-x: calc(100% - 20px), calc(100% - 20px);
/*一個以上,隔開,數量要跟圖片數量一致,圖片位置自行移動,數字可改*/
background-position-y:bottom, bottom; /*一個以上,隔開,數量要跟圖片數量一致*/
}