0
所以我想要一個小圖標放在圖像的左上角,但是當我寫top:0和left:0時,圖標放置在整個頁面的左上角,所以我必須一直向上滾動才能看到它。位置絕對元素是頁面的孩子,而不是位置相對元素
這是圖片的CSS:
.attimage {
width: 50%;
border-radius: 5%;
float: left;
margin-right: .5em;
position: relative;
}
這是圖標的CSS:
.location-icon {
width: 15px;
left: 0px;
top: 0px;
position: absolute;
}