부자 되기 위한 블로그, 머니킹

보통 목록 리스트나 card형태의 요소들은 삭제 버튼이나 설정 버튼같은 것들은 부모요소를 따라가게 놔두는데 이럴 때에 position absoluete를 사용해야 한다.

 

# 주의할점

1. 부모 요소는 position:relative 속성을 가져야 한다.

2. 자식 요소는 position:absolute 속성을 가져야한다.

3. 자식 요소의 위치는 top,right,bottom,left 속성 지정으로 설정한다.

 

 

<코드>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
  <style>
    .container{
      position: relative;
      width:500px;
      height:500px;
      background-color: #0dcaf0;
    }

    .block{
        position: absolute;
        top: 8px;
        right: 8px;
        width:30px;
        height:30px;
        background-color: #0f5132;
    }
  </style>
</head>


<body>
<div class="container">
  <div class="block">안녕</div>
    <div>안녕하세요</div>
</div>
</body>
</html>

 

 

<결과>