The official blog for the Friday Addition Web Site Design class
p { background-color: blue;}the (p) element is the selectorthe background-color is the propertyblue is the background-color value. autumn
Whatever property you have will be done to what ever you have in the selector place. Ethan
h1 {background-color: orange;}(h1) - selectorbackground-color - propertyorange - value[Collin]
selector=tag property changesproperty=what the color is used forvalue=color{travis}
The selector makes the tag changes correctly, the property shows what the color is being used for, and value determines the colorGracie
properties are applied to whatever's in the selector.. simplish right?
p {
ReplyDeletebackground-color: blue;
}
the (p) element is the selector
the background-color is the property
blue is the background-color value.
autumn
Whatever property you have will be done to what ever you have in the selector place.
ReplyDeleteEthan
h1 {
ReplyDeletebackground-color: orange;
}
(h1) - selector
background-color - property
orange - value
[Collin]
selector=tag property changes
ReplyDeleteproperty=what the color is used for
value=color
{travis}
The selector makes the tag changes correctly, the property shows what the color is being used for, and value determines the color
ReplyDeleteGracie
properties are applied to whatever's in the selector.. simplish right?
ReplyDelete