Answers for "css selection tag"

CSS
4

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

Browse Popular Code Answers by Language