1.
What does the following CSS code do:
BODY {
font-size: 12pt;
text-indent: 3em;
}
H1 { font-size: 15pt }
2.
Which of the following lines will be executed first by a CSS1 parser in the following CSS code:
IMG { float: left }
IMG { float: left top }
IMG { background: "red" }
IMG { border-width: 3 }
3.
What will a CSS1 parser return for the following CSS code:
@three-dee {
@background-lighting {
azimuth: 30deg;
elevation: 190deg;
}
H1 { color: red }
}
H1 {color: blue}
4.
The following CSS code is a _____________________ style sheet:
body {
background-color: lightblue;
}

h1 {
color: navy;
margin-left: 20px;
}
5.
The following CSS code is a _____________________ style sheet:

6.
What does the following CSS code do:
@keyframes mymove {
from {top: 0px;}
to {top: 200px;}
}
7.
In the following CSS code, what is the total width:
div.div-1{
width:150px;
padding: 25px;}
8.
What is the output of the following CSS code:
img {
float: right;
margin: 0 0 10px 10px;
}
9.
What is the output of the following CSS code:
div.container {
border: 1px solid red;
margin-left: 100px;
}
p.one {
margin-left: inherit;
}
10.
In CSS, what is the order in which the following padding shorthand properties are applied to a web page:
Padding-left
Padding-bottom
Padding-top
Padding-right