What is the error in this CSS code intended to center-align text within a <div>?
<div>
div { text-align = center; }
text-align should be align-text.
text-align
align-text
center is not a valid value for text-align.
center
The property should be applied to p, not div.
p
div
The syntax is incorrect.