1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
解決此布景:https://www.flickr.com/photos/m66660000/28338801118/in/pool-plurkcss/
的回應作者點擊範圍問題

1. 先找到這一串:

._lc_ .list .plurk_cnt .td_qual { position: absolute; width: auto; overflow: visible; padding: 1em; margin-left: 0.5em; }

2. 在這串的最後「}」前面加上「z-index: 1;」,如下:

._lc_ .list .plurk_cnt .td_qual { position: absolute; width: auto; overflow: visible; padding: 1em; margin-left: 0.5em; z-index: 1; }

底下內文有可能會有反選不到的情況,可以再多做第三步驟
3. 同一串裡的「padding: 1em;」改成「padding: 1em 1em 0;」,如下:

._lc_ .list .plurk_cnt .td_qual { position: absolute; width: auto; overflow: visible; padding: 1em 1em 0; margin-left: 0.5em; z-index: 1; }