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;
}
2
Q
Use a CSS property that allows you to add/specify the spacing between characters.
A
p{
letter-spacing: 5px;
}
3
Q
Use a CSS property that allows you to specify/define the space between lines of text.
A
p{
line-height: 5px;
}
4
Q
Use a CSS property that allows you to define/specify the space between words in text.
A
p{
word-spacing: 10px;
}