font-style
font-family
font-weight
font-color
style:bold;
font:bold;
font-weight:bold;
text:bold;
border-width:10px 1px 5px 20px;
border-width:5px 20px 10px 1px;
border-width:10px 20px 5px 1px;
border-width:10px 5px 20px 1px;
margin-left
indent
padding-left
left-margin
list-style-type: square;
list-type: square;
list: square;
list-style: square;
div p
div.p
div + p
div ~ p
Separate each selector with a plus sign
Separate each selector with a comma
Separate each selector with a space
All of These
absolute
static
fixed
relative
Apply styles for the web page
Define structure of the web page
Provide meaning to the sections of the web page
None of the above
style=”tag{property:value;}”
<style> tag{property: value;} </style>
css=”tag{property=value;}”
<style> tag{property=value;} </style>
body { font-size: 20px; }
body { font-size= 20px };
body:{ font-size: 20px; }
body:{ font-size= 20px; }
id
class
tag
both b) and c)
*test
#test
.test
test
article
html
demo
#demo
.demo
*demo
h1.hover
h1*hover
h1:hover
h1-hover
p h4 a { color: orange; }
p; h4; a { color: orange; }
p+a+h4 { color: orange; }
h4, a, p { color: orange; }
Seperate each selector with a star
p
p.style
p-style
.style
p.style span
p.style.span
p.style span*
none of the above