1
 2
 3
 4
 5
 6
 7
 8
 9
10
/*讓自介小噗寶位置是以自介的邊界來算*/
#about_me { position:relative; }
/*自介小噗寶*/
#about_me:before {
    position:absolute;
    /*圖片*/ content:url(圖片網址);
    /*距離右側*/ right:0px; /*換成left就是距離左側*/
    /*距離下方*/ bottom:0px; /*換成top就是距離上方*/
    /*圖片大小*/ width:48px; /*只調寬,高會自動,換成height就是只調高,寬自動*/
}