“Ubah HTML Warna Sorotan” Kode Jawaban

html cara mengubah warna sorotan

::selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}
Defiant Dove

Ubah HTML Warna Sorotan

::-moz-selection { /* Code for Firefox */
  color: red;
  background: yellow;
}

::selection {
  color: red;
  background: yellow;
}
A//

Ubah Warna Sorotan Mouse JS

/*** Works on common browsers ***/
::selection {
    background-color: #352e7e;
    color: #fff;
}

/*** Mozilla based browsers ***/
::-moz-selection {
    background-color: #352e7e;
    color: #fff;
}

/***For Other Browsers ***/
::-o-selection {
    background-color: #352e7e;
    color: #fff;
}

::-ms-selection {
    background-color: #352e7e;
    color: #fff;
}

/*** For Webkit ***/
::-webkit-selection {
    background-color: #352e7e;
    color: #fff;
}
Dull Dragonfly

Jawaban yang mirip dengan “Ubah HTML Warna Sorotan”

Pertanyaan yang mirip dengan “Ubah HTML Warna Sorotan”

Lebih banyak jawaban terkait untuk “Ubah HTML Warna Sorotan” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya