Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css color

/* use color: ;
it can be: */
color: red;  				/*color name(1)*/
color: rgb(100, 50, 30);    /*RGB value(2)*/
color: #122120;  			/*HAX value(3)*/
color: #fff;
color: hsl(120, 55%, 20%)	/*HUE value(4)*/
/*(2)and(3) are the most recommended*/
Comment

css colors

/*official color keywords wiki*/
	https://www.w3.org/wiki/CSS/Properties/color/keywords

/*good wikipedia entry w pics*/
	https://en.wikipedia.org/wiki/Web_colors
Comment

CSS Colors

#p1 {background-color: rgba(255, 0, 0, 0.3);}  /* red with opacity */
#p2 {background-color: rgba(0, 255, 0, 0.3);}  /* green with opacity */
#p3 {background-color: rgba(0, 0, 255, 0.3);}  /* blue with opacity */
Comment

css color

/* all color are same */
color: rgb(255, 99, 71)
color: #ff6347
color: hsl(9, 100%, 64%)
Comment

css color properties

h1 {
    color: rgb(0,0,255);
}
Comment

PREVIOUS NEXT
Code Example
Css :: react use global css 
Css :: switch checkbox 
Css :: woocommerce cart css description 
Css :: css selector first level child 
Css :: scrollbar style 
Css :: how to add images on images css 
Css :: css grid tutorial 
Css :: hover.css cdn 
Css :: what is the difference between relative and absolute css 
Css :: como tirar a sidebar css 
Css :: WordPress Permalink for bread crumbs 
Css :: css style link 
Css :: text-overflow ellipsis css 
Css :: css packer cli 
Css :: chrome simulate prefers reduced motion 
Css :: redesign html select 
Css :: Understanding ' sign in css selector 
Css :: table inside table not matching borders 
Css :: what is default value for justify-content in react mui 
Css :: how to make an element vertically centered in a dv 
Css :: alinhar ao centro align item css 
Css :: two file css how to get one 
Css :: flex 
Css :: fond de couleur noir et texte en blanc css 
Css :: Définir le nombre minimum de mots sur les publications WordPress 
Css :: hide the default tooltip behaviour from safari 
Css :: CSS BODY AND PRE 
Css :: alternate table row color css 
Css :: how long since 1993 
Css :: why use 0.5rem 0 in margin in css 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =