카테고리 없음

[21.09.16] exam02(04_cssBoxModel) -

luvforjunk 2021. 9. 16. 21:13
728x90
반응형

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<style type="text/css">

div.inner {

        background: yellow;

        padding: 20px;

        border: 5px dotted red;

        margin: 30px;

}

</style>

</head>

<body>

        <h3>박스 모델</h3>

        <p>margin 30px, padding 20px, border 5px 빨간색 점선</p>

        <hr>

        <div class="inner">

                       <img src="../img/img5.PNG" width="150" height="150" alt="tlrtk">

        </div>

</body>

</html>

 

728x90
반응형