デフォルトで選択されている背景色を変更する
::-moz-selection{background:#FF0000;color:#FFFFFF;}::selection {background:#FF0000;color:#FFFFFF;}code::-moz-selection {background:#FF0000;color:#FFFFFF;}code::selection {background:#FF0000;color:#FFFFFF;}
設定ページでの選択を無効にする
/*全局*/html,body{ padding:0px; margin:0px; background:#fff; moz-user-select: -moz-none; -moz-user-select: none; -o-user-select:none; -khtml-user-select:none; /* you could also put this in a class */ -webkit-user-select:none;/* and add the CSS class here instead */ -ms-user-select:none; user-select:none;/**禁止选中文字*/ }
上記のコードはcss3に属するため、IE9以下のブラウザには互換性がない可能性があります。