210608 UIUX WebDesign CSS 연습_19

ITisIT210·2021년 6월 13일
0

CSS

목록 보기
19/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>레이아웃 연습</title>
    <style>
        div {
            width: 300px;
            height: 300px;
            border: 5px solid #000;
            font-size: 50px;
        }
        #box1 {
            /* float = 부유의(공중에 떠 있는) */
            background-color: #fcc;
            float: left;
        }
        #box2 {
            /* width: 500px;
            height: 500px; */
            background-color: #0f1;
            float: right;
            /* float: left; */
        }
        #box3 {
            background-color: #0cf;
            clear: both;
        }
    </style>
</head>
<body>
<div id="box1">box1</div>
<div id="box2">box2</div>
<div id="box3">box3</div>
</body>
</html>
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글