반응형

가로 세로 중앙 정렬 방법(1)에서는 여러 요소들을 중앙 정렬할 때 유용한 방법을 설명했다.

이번에는 간단히 text를 정렬하는 방법을 소개한다.

특히 header copy등을 삽입할 때 편리하게 사용할 수 있다.

<!DOCTYPE html>
<html lang="ko">
<head>
  <meta charset="UTF-8">
  <meta name="author" content="Developer N">
  <title>date methode</title>
  <style>
    .center {
      background-color: rgb(6, 65, 23);
      color: rgb(255, 255, 255);
      padding: 5%;
      text-align: center;
    } 
  </style>
</head>
<body>
  <h1 class="center">
    [ 가로, 세로 중앙 정렬 ]<br />
    padding의 크기로 height를 조정하고<br />
    별도로 height는 지정하지 않는다.
  </h1>
</body>
</html>

 

반응형
블로그 이미지

DeveloperN

개발자 n의 개발 이야기(draft)

,