CSS and Graphical Elements Flashcards
Identify the selector:
h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}
h1
Identify a property:
h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}
color, font-family, text-align, font-size
Identify a value:
h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}
Verdana, Arial, sans-seif, #000, center, 4em
Identify a declaration:
h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}
text-align: center;
What is the rule?
h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}
The entire block of code
What does hex 10 represent?
A
What does hex F represent?
15
Colors are specified in RGB values ranging from 0 to what?
255
What hexadecimal value represents 255?
FF
The browser-safe color palette consists of a standard of how many colors?
216
The hexadecimal value #000000 represents which color?
Black
In RGB code, the lower numeric value represents a lighter or darker color?
darker
The hexadecimal value #FFFFFF represents which color?
White
In RGB code, the higher numeric value represents a lighter or darker color?
lighter
The hexadecimal value #FF0000 represents which color?
Red
Identify a class selector
.class-name
Is an ID or class higher priority?
ID
Identify an ID selector
“#id-name”
Identify element selectors
h1,h2,h3, .. , body, p
How to correctly add an image to a webpage
<img></img>
What file formats can be used within a webpage
GIF, JPG, PNG
Describe padding
Space between content and border
Describe margin
Space outside of the border between the page and other elements
What CSS property is used to make images appear on the right side of the screen?
float