Search
 
SCRIPT & CODE EXAMPLE
 

CSS

html how to change highlight color

::selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}
Comment

change highlight color html

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

::selection {
  color: red;
  background: yellow;
}
Comment

PREVIOUS NEXT
Code Example
Css :: how to remove background color in css 
Css :: change the color of an hr 
Css :: css flex center horizontally and vertically 
Css :: gradient text 
Css :: css brightness 
Css :: transfrom rotate 
Css :: table overflow scroll horizontal css 
Css :: @media max-width 
Css :: css bottom shadow 
Css :: CSS make image fill whole background 
Css :: overflow text newline 
Css :: ionic textarea placeholder color 
Css :: keep background image fixed during scroll using css 
Css :: media queries css not working for mobile 
Css :: diable focus button css 
Css :: div background image 
Css :: css set width of a span 
Css :: center text css 
Css :: rounded input css 
Css :: span wrap html 
Css :: css shadow 
Css :: css glow effect 
Css :: grid center css 
Css :: line break doesnt work css 
Css :: drop shadow css 
Css :: icon inside a circle css 
Css :: table td remove unknown padding in td 
Css :: google font roboto 
Css :: css center div vertically 
Css :: how to add background image in styled components 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =