CSS and Graphical Elements Flashcards

1
Q

Identify the selector:

h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}

A

h1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Identify a property:

h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}

A

color, font-family, text-align, font-size

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Identify a value:

h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}

A

Verdana, Arial, sans-seif, #000, center, 4em

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Identify a declaration:

h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}

A

text-align: center;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the rule?

h1{
font-family: Verdana, Arial, sans-serif;
color: #000;
text-align: center;
font-size: 4em;
}

A

The entire block of code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does hex 10 represent?

A

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does hex F represent?

A

15

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Colors are specified in RGB values ranging from 0 to what?

A

255

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What hexadecimal value represents 255?

A

FF

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

The browser-safe color palette consists of a standard of how many colors?

A

216

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The hexadecimal value #000000 represents which color?

A

Black

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In RGB code, the lower numeric value represents a lighter or darker color?

A

darker

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

The hexadecimal value #FFFFFF represents which color?

A

White

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

In RGB code, the higher numeric value represents a lighter or darker color?

A

lighter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The hexadecimal value #FF0000 represents which color?

A

Red

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Identify a class selector

A

.class-name

17
Q

Is an ID or class higher priority?

A

ID

18
Q

Identify an ID selector

A

“#id-name”

19
Q

Identify element selectors

A

h1,h2,h3, .. , body, p

20
Q

How to correctly add an image to a webpage

A

<img></img>

21
Q

What file formats can be used within a webpage

A

GIF, JPG, PNG

22
Q

Describe padding

A

Space between content and border

23
Q

Describe margin

A

Space outside of the border between the page and other elements

24
Q

What CSS property is used to make images appear on the right side of the screen?

A

float