Putting CSS to Work: Setting Colors with CSS Flashcards

1
Q

CSS Color Values

A
  • By color names
  • As RGB values
  • As hexadecimal values
  • As HSL values (CSS3)
  • As HWB values (CSS4)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

div

A
  • creates a little container (size can be modified (height and width))
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

RGB Colors

A
  • RGB color values are supported in all browsers.
  • An RGB color value is specified with: rgb( RED , GREEN , BLUE ).
  • Each parameter defines the intensity of the color as an integer between 0 and 255.
  • For example, rgb(0,0,255) is rendered as blue, because the blue parameter is set to its highest value (255) and the others are set to 0.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Hexadecimal Colors

A
  • Hexadecimal color values are also supported in all browsers.
  • A hexadecimal color is specified with: #RRGGBB.
  • RR (red), GG (green) and BB (blue) are hexadecimal integers between 00 and FF specifying the intensity of the color.
  • For example, #0000FF is displayed as blue, because the blue component is set to its highest value (FF) and the others are set to 00.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which one of the following color values has more red in it that the others?

A
  • rgb(234,54,175)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly