Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css selection

::selection {
  background-color: cyan;
}
Comment

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;
}
Comment

Css selection

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

p.moz::-moz-selection {
	background: #cc0000;
	color: #fff;
}
Comment

PREVIOUS NEXT
Code Example
Css :: how to prevent select image in css 
Css :: align text in center css 
Css :: circular div css 
Css :: cursive css 
Css :: css style slider color 
Css :: bootstrap file upload 
Css :: css opacity example 
Css :: add line below text css 
Css :: css how to remove underline from visited sites 
Css :: how to manage overflowing text in button 
Css :: media query for mobile landscape only 
Css :: padding for text in html 
Css :: onhover mouse pointer css 
Css :: Define Or Attach Font Face In HTML CSS Web Page 
Css :: move element in front of another css 
Css :: how to disable margin collapsing 
Css :: background image blur css codepen 
Css :: remove on click border 
Css :: css div content horizontal scroll 
Css :: css keep div at bottom of screen when scrolling 
Css :: how to add a background overlay in css 
Css :: how to create space inbetween text css 
Css :: download s3 bucket files on l local 
Css :: grid template columns 
Css :: css gradient 3 colors 
Css :: angular headers for enc type 
Css :: how to define global font in css 
Css :: css background offset 
Css :: bootstrap 4 input error 
Css :: [deprecation] Running tailwindcss without -i, please provide an input file. 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =