.left {
text-align: left;
}
.center {
text-align: center;
}
.right {
text-align: right;
}
-> 모든 요소의 기본 정렬은 왼쪽.
-> <span>은 inline-element이므로, "span의 오른쪽 정렬"이라는 text만큼 영역을 차지하고 있어 정렬이 되지 않는다.
text-indent을 이용하여 CSS로 들여쓰기 가능.js-description {
text-indent: 50px;
을 넣어주면 된다.