我通過CSS設置選擇背景色:選擇改變顏色時,火狐失去焦點
::selection {
background:#cc0000;
color:#fff;
}
::-moz-selection {
background:#cc0000;
color:#fff;
}
大多數瀏覽器時,重點是在其他地方(如一個IFrame),選擇的顏色將保持不變如:
,但在Firefox它不會:
您可以在jsFiddle here上看到此操作。
如何在這種情況下讓Firefox設置選擇顏色?這是一個錯誤?
相關:http://stackoverflow.com/questions/6730814/prevent-selection-being-greyed-out-in-iframe-in-firefox-without-using-contentedi –