I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) CSS position absolute 요소 가운데 정렬하기 (가로축, 세로축)

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2019. 8. 8. 00:34

반응형

[즐거'웅'코드] 목차

  1. CSS
  2. 예제 소스
  3. 구현 예시
CSS
1
2
3
4
5
6
7
8
<style>
    .test_obj {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
</style>
예제 소스
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div class="test_obj">
    absolute
</div>
 
<style>
    .test_obj {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
  
        width: 100px;
        height: 100px;
        background-color: #e45e28;
    }
</style>
구현 예시
반응형