1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
說明:
1.舊的噗寶語法記得刪除,否則可能會衝突
2.這個噗貼裡前面的說明要刪掉不然會出錯
3.第一個噗寶一定要保留,後面第二第三可刪除,都不刪就是三隻噗寶

/*========多重噗寶事先設定========*/
#dynamic_logo { position:unset; }
/*========第一個噗寶========*/
#dynamic_logo img {
	/*這行不用動*/ display:block; position:absolute;
	/*上下位置*/ top:10px; /*可改bottom*/
	/*左右位置*/ right:0px; /*可改left*/
	/*大小*/ width:auto; /*auto改想要的大小,可改height,不須調大小的話可以刪除這行*/
	/*圖片*/ content:url(圖片網址);
}
/*========第二個噗寶========*/
#dynamic_logo:before {
	/*這行不用動*/ display:block; position:absolute;
	/*上下位置*/ top:10px; /*可改bottom*/
	/*左右位置*/ left:0px; /*可改right*/
	/*大小*/ width:auto; /*auto改想要的大小,可改height,不須調大小的話可以刪除這行*/
	/*圖片*/ content:url(圖片網址);
}
/*========第三個噗寶========*/
#dynamic_logo:after {
	/*這行不用動*/ display:block; position:absolute;
	/*上下位置*/ bottom:10px; /*可改top*/
	/*左右位置*/ left:0px; /*可改right*/
	/*大小*/ width:auto; /*auto改想要的大小,可改height,不須調大小的話可以刪除這行*/
	/*圖片*/ content:url(圖片網址);
}