잡동사니에도 사랑을

[21.09.17] exam08(05_cssPositioning) - 화면을 기준(fixed)으로 자리 배치 본문

JAVA_EE/CSS

[21.09.17] exam08(05_cssPositioning) - 화면을 기준(fixed)으로 자리 배치

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

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<style type="text/css">

#fixed {

        position: fixed; 화면을 기준으로

        bottom: 10px;

        right: 10px;

        width: 120px;

        padding: 5px;

        background: red;

        color: white;

}

</style>

</head>

<body>

        <h3>Merry Christmas!</h3>

        <hr>

        <img src="../img/christmastree.png" width="300" height="200" alt="크리스마스 트리">

        <div id="fixed">메리 크리스마스</div>

</body>

</html>

결과창

728x90
반응형