Answers for "css selection element"

CSS
3

css selection

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

Select HTML elements by CSS selectors

const elements = document.querySelectorAll("div.article > h1");
Posted by: Guest on January-25-2022
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