Friday, January 11, 2013

January 11 Online Discussion Question 3

Selector, property, and value - what does these mean? And what is their role in CSS?

6 comments:

  1. p {
    background-color: blue;
    }

    the (p) element is the selector
    the background-color is the property
    blue is the background-color value.

    autumn

    ReplyDelete
  2. Whatever property you have will be done to what ever you have in the selector place.

    Ethan

    ReplyDelete
  3. h1 {
    background-color: orange;
    }

    (h1) - selector
    background-color - property
    orange - value

    [Collin]

    ReplyDelete
  4. selector=tag property changes
    property=what the color is used for
    value=color

    {travis}

    ReplyDelete
  5. The selector makes the tag changes correctly, the property shows what the color is being used for, and value determines the color
    Gracie

    ReplyDelete
  6. properties are applied to whatever's in the selector.. simplish right?

    ReplyDelete