공부 모음집/실습 기록

[CSS] box-shadow

leedaramji 2023. 10. 23. 01:07

 

<body>
    <div class="container">
        <div class="result"></div>
    </div>
</body
 <style>
        .container {
        position: relative;
        width: 800px;
        height: 500px;
        background-color: seashell;
        }

        .result {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background-color: seagreen;
            box-shadow: 30px 30px 20px 5px rgba(28, 27, 27, 0.4);
        }
 </style>