“CSS Warna Pilihan Kustom” Kode Jawaban

CSS Warna Pilihan Kustom

::selection {
	color: #000000;
	background-color: red;
}

/* for firefox */
::moz-selection {
	color: #000000;
	background-color: red;
}
Inquisitive Ibis

Ubah HTML Warna Sorotan

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

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

Jawaban yang mirip dengan “CSS Warna Pilihan Kustom”

Pertanyaan yang mirip dengan “CSS Warna Pilihan Kustom”

Lebih banyak jawaban terkait untuk “CSS Warna Pilihan Kustom” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya