Answers for "selection tag in css"

CSS
2

css selection

::selection {
  background-color: cyan;
}
Posted by: Guest on October-03-2020
0

Css selection

p.normal::selection {
	background: #cc0000;
	color: #fff;
}

p.moz::-moz-selection {
	background: #cc0000;
	color: #fff;
}
Posted by: Guest on August-12-2021
0

selection css

/* Make selected text gold on a red background */
::selection {
  color: gold;
  background-color: red;
}

/* Make selected text in a paragraph white on a blue background */
p::selection {
  color: white;
  background-color: blue;
}
Posted by: Guest on October-10-2021

Browse Popular Code Answers by Language