210625 UIUX WebDesign CSS 연습_50

ITisIT210·2021년 6월 27일
0

CSS

목록 보기
61/93
post-thumbnail
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>house</title>
    <style>
        #house {
            margin: 50px auto;
            width: 700px;
            height: 340px;
            border: 1px solid #000;
            position: relative;
        }

        #house img:nth-child(1) {
            position: absolute;
            left: 20px;
            top: 50px;
            z-index: 2;
        }

        #house img:nth-child(2) {
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 1;
        }
    </style>
</head>

<body>
    <div id="house">
        <img src="./images/house1.jpg" alt="사진1">
        <img src="./images/house2.jpg" alt="사진2">
    </div>
</body>

</html>
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글