본문 바로가기

CSS

글자 가운데 정렬: 텍스트를 가로로 가운데 정렬.

반응형

글자를 가로로 가운데 정렬하는 방법을 상세히 설명하고 CSS와 HTML 코드를 포함한 예제를 제공하겠습니다. 각 부분을 상세히 설명하고 마지막에 티스토리용 태그를 한 줄로 나열하겠습니다.

1. 가로 가운데 정렬 (텍스트 요소):

<!DOCTYPE html>
<html>
<head>
  <style>
    .center-text {
      text-align: center;
    }
  </style>
</head>
<body>
  <p class="center-text">이 텍스트는 가로로 가운데 정렬됩니다.</p>
</body>
</html>

 

2. 가로 가운데 정렬 (블록 요소):

<!DOCTYPE html>
<html>
<head>
  <style>
    .center-block {
      margin: 0 auto;
      width: 50%;
      background-color: #f0f0f0;
    }
  </style>
</head>
<body>
  <div class="center-block">
    <p>이 블록은 화면 가로 중앙에 정렬됩니다.</p>
  </div>
</body>
</html>

 

3. 텍스트 가로 가운데 정렬 (텍스트 요소):

<!DOCTYPE html>
<html>
<head>
  <style>
    .center-text {
      display: flex;
      justify-content: center;
    }
  </style>
</head>
<body>
  <p class="center-text">이 텍스트는 가로로 가운데 정렬됩니다.</p>
</body>
</html>

 

4. 텍스트 가로 가운데 정렬 (텍스트 요소):

<!DOCTYPE html>
<html>
<head>
  <style>
    .center-text {
      display: inline-block;
      text-align: center;
    }
  </style>
</head>
<body>
  <p class="center-text">이 텍스트는 가로로 가운데 정렬됩니다.</p>
</body>
</html>

 

반응형