Cute Blinking Unicorn

프론트엔드/HTML

overflow 교재 176p 참고하기

민밥통 2023. 10. 18. 12:29
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <link rel="stylesheet" href="over.css" />
  </head>
  <body>
    <div class="parent">
      <div class="child"></div>
    </div>
  </body>
</html>
.parent {
  width: 200px;
  height: 150px;
  background-color: darkblue;
  margin: 20px;
  overflow: hidden;
}

.child {
  width: 300px;
  height: 100px;
  background-color: orange;
}

넘치지 않게 잘라냄