CSS에서 중앙에 배치하는 방법 💘

개발자 여러분! 🔥



"CSS에서 중심을 맞추는 방법"에 대한 빠른 가이드 🙌

Most of the time, you write great CSS code from colors to complex animations.
But I know most of us (beginners) still struggle to center elements on a viewport perfectly.



개발자는 걱정하지 마십시오. 이 짧은 가이드가 끝나면 더 이상 멍청이가 아닙니다.

시작하자



웹 페이지에서 HTML 요소를 가운데에 맞추는 방법에는 두 가지가 있습니다.

1. 플렉스박스 사용하기

2. 변환 사용



  • 플렉스박스 사용

  • HTML code as shown below 👇



      <body>
        <div class="container">
          <div id="object"></div>
        </div>
      </body>
    
    


    Now the CSS code



    
    html,
    body,
    .container {
      height: 100%;
      overflow: hidden;
    }
    
    .container {
      display: flex;
      justify-content: center;
    }
    
    #object {
      height: 100px;
      width: 100px;
      background: red;
      align-self: center;
    }
    
    
    


  • 변환 사용

  • HTML code shown below 👇



    
    <body>
        <div class="element"></div>
    </body>
    
    


    Now the CSS code



    
    .element
        {
            width: 100px;
            height: 100px;
            background: coral;           
        }
    
    .element
        { 
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50% , -50%);
        }
    
    


    제 다른 포스팅도 구경해보세요 🥂






  • 작가:

    좋은 웹페이지 즐겨찾기