100Devs Flashcards

1
Q

How can you make text bold in CSS?

A

font-weight:

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

How do you change text color in CSS?

A

color:

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

How do you change the font in CSS?

A

font-family:

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

How do you change the font size in CSS?

A

font-size:

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

How do you underline text in CSS?

A

text-decoration: underline

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

How does a parent child look like in html and CSS?

A

<section>
<p>Hello</p>
</section>

section > p {
color: red;
}

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

How many id’s with the same value per document are allowed?

A

One

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

What ways can you use to change the color in CSS?

A

word, hex, RGBA, HSLa

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

What does cascade mean?

A

What comes below can override what comes above

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

What is “bold” called?
p {
color: red;
font-weight: bold;
}

A

Value

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

What is “color” called?
p {
color: red;
font-weight: bold;
}

A

Property

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

What is the “p” called?

p {
color: red;
font-weight: bold;
}

A

A selector

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

What is the direct parent of the paragraph?

A

<section>
<article>
<p>Hello</p>
</article>
</section>

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

What is the capitalized part called?
p {
COLOR: RED;
font-weight: bold;
}

A

Declaration

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

What is the whole thing called?
p {
color: red;
font-weight: bold;
}

A

Declaration block

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

What is this called?
p {
color: red;
font-weight: bold;
}

p {
color: blue;
}

A

Cascade

17
Q

Which can be used multiple times with the same value in the document? Id or classes?

A

Classes