1. What are the three ways of defining which color you want to use?
    color names, hexadecimal values, RGB values
  2. What is the numerical range for the colors when using RGB?
    0-255
  3. Name the CSS property that is used to add a solid color behind any element on the page, including images.
    background-color
  4. What does the value transparent mean?
    It makes the background show what is behind it.
  5. What is the property for adding a GIF or JPEG behind an element?
    background-image: url (the location goes here)
  6. Which can you apply a color or image to the background of, an entire paragraph or a few select words?
    both work
  7. What will a value of none do?
    It will override any inherited value for background-image.
  8. What property would one use to prevent an image from tiling?
    background-repeat: no-repeat
  9. What value causes an image to repeat horizontally?
    background-repeat: repeat-x
  10. What value causes an image to repeat vertically?
    background-repeat: repeat-y
  11. What value causes an image to repeat both horizontally and vertically?
    background-repeat: repeat
  12. What is the property and the value that is used to stop a background image from scrolling and repeating as one scrolls down on the screen?
    background-attachment: fixed
  13. What is the other value that can be used instead of the above value?
    background-position
  14. What does background-position do?
    It positions where your background image should start displaying.
  15. What are the three ways to position a background?
    keyword values, percentage values, length values
  16. What are the 5 keyword values used with background-position?
    top, bottom, left, right, center
  17. What does the property "background" do?
    It defines the background color, image, tiling method, scrolling versus fixed status, and position.

.

Back
Next
Hosted by www.Geocities.ws

1