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
/*讓噗首像素凸出去的部分不會被切掉*/
.timeline-cnt .plurk .text_holder { position:unset; }
/*注意,這些像素都會犧牲掉一個換行,如果檢查的表符後面沒有換行就會無效*/

/*噗首像素1*/
.timeline-cnt .plurk [src="要檢查的表符網址1"]~br {
	/*這行不動*/ position:absolute;
	/*上下位置*/ top:-5px; /*可改bottom*/
	/*左右位置*/ right:-5px; /*可改left*/
	/*圖片*/ content:url(要顯示的像素網址1);
}

/*噗首像素2*/
.timeline-cnt .plurk [src="要檢查的表符網址2"]~br {
	/*這行不動*/ position:absolute;
	/*上下位置*/ top:-5px; /*可改bottom*/
	/*左右位置*/ right:-5px; /*可改left*/
	/*圖片*/ content:url(要顯示的像素網址2);
}

/*噗首像素3*/
.timeline-cnt .plurk [src="要檢查的表符網址3"]~br {
	/*這行不動*/ position:absolute;
	/*上下位置*/ top:-5px; /*可改bottom*/
	/*左右位置*/ right:-5px; /*可改left*/
	/*圖片*/ content:url(要顯示的像素網址3);
}