The first group of challenges build on the given card layout to show a number of core principles.
Text is often a large part of web content. CSS has several options for how to align it with the text-align
property.
text-align: justify;
causes all lines of text except the last line to meet the left and right edges of the line box.
text-align: center;
centers the text
text-align: right;
right-aligns the text
And text-align: left;
(the default) left-aligns the text.
h4 {
text-align: center;
}
p {
text-align: justify;
}