text-align : can align text in css.
css에서 {text-align: center;}
{text-align: left;}
{text-align: right;}
{text-align: justify;}
* justify는 text가 same width가 되도록 퍼뜨린다.
* when "justify" spreads the text out, text will be on the line with same width.
ex of HTML center alignment:
<div class="parent">
<div class="child"> </div></div>
.parent { border: 4px solid blue;}
.child { width: 50%; padding:20px; border: 4px solid red; margin: auto;}