본문 바로가기

Front end/CSS (Cascading Style Sheets)

(CSS) text 가로 세로 가운데 정렬

728x90
#example{
    text-align: center;
    height: 100px;
    line-height: 100px;
}

text-align: center = 가로 가운데 정렬

 

line-height:100px 은 height 가 지정되어야하고 그 길이와 같게 정의해주면 세로 가운데 정렬

 

728x90