CSS Text Spacing Flashcards

1
Q

Use a CSS property that allows you to indent the first line of text.

A

p{
text-indent: 30px;
}

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

Use a CSS property that allows you to add/specify the spacing between characters.

A

p{
letter-spacing: 5px;
}

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

Use a CSS property that allows you to specify/define the space between lines of text.

A

p{
line-height: 5px;
}

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

Use a CSS property that allows you to define/specify the space between words in text.

A

p{
word-spacing: 10px;
}

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