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
32
33
34
35
36
37
38
39
/* 基本語法尋找表符法 */
#timeline_cnt .plurk .plurk_cnt .td_cnt:has(img[src='表符網址'])::before{
content: url(對應後圖片);
display: block;
position: absolute;
top: -56px;/* 上下位移 */
right: 0px;/* 左右位移 */
}

EX:
/* 基本語法尋找表符法 */
#timeline_cnt .plurk .plurk_cnt .td_cnt:has(img[src='https://emos.plurk.com/da6feb43e540d206c137a98dac7a795d_w20_h20.png'])::before{
content: url(https://images.plurk.com/axJUZKIhEVxY6jwyyx1KZ.png );
display: block;
position: absolute;
top: -56px;
right: 0px;
}

----------------------------------------------------------------------------

/* 基本語法#版 */
#timeline_cnt .plurk .plurk_cnt .td_cnt:has(.hashtag[href$='#的字'])::before{
content: url(對應後圖片);
display: block;
position: absolute;
top: -40px;/* 上下位移 */
right: 20px;/* 左右位移 */
}

EX:
/* 基本語法#版 */
#timeline_cnt .plurk .plurk_cnt .td_cnt:has(.hashtag[href$='櫻井翔'])::before{
content: url(https://images.plurk.com/axJUZKIhEVxY6jwyyx1KZ.png );
display: block;
position: absolute;
top: -40px;
right: 20px;
}