잡동사니에도 사랑을

[21.09.17] practice05(css) - id속성, class속성 활용 본문

JAVA_EE/CSS

[21.09.17] practice05(css) - id속성, class속성 활용

luvforjunk 2021. 9. 17. 19:09
728x90
반응형

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<style type="text/css">

body {

        background-color: powderblue;

}

h3, em {

        color: green;

}

div strong { → 후손

        color: red;

}

div > strong { → 자식

        color: blue;

}

#center {

        text-align: center;

}

#center strong {

        background-color: yellow;

}

.indent { → 들여쓰기

        text-indent: 3em;

}

</style>

</head>

<body class="main">

        <h3>얼굴</h3>

        <hr>

        <div id="center">

               <strong>박인희</strong>

        </div>

        <div class="indent">

               <p>

                       <em></em> 걷고 산들 무엇하리 <strong></strong> 내가 아니듯 내가 <strong></strong>

                       없는 지금...

               </p>

        </div>

</body>

</html>

 

 

결과창

728x90
반응형