210629 UIUX WebDesign CSS 연습_55

ITisIT210·2021년 7월 4일
0

CSS

목록 보기
70/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>CSS3</title>
    <style>
        div {
            width: 500px;
            height: 300px;
            /* background: #ff0; */
            box-shadow: 5px 5px 50px rgba(255, 0, 0, 0.5);
            /* box-shadow: inset 5px 5px 50px rgba(255, 0, 0, 0.5); */
            font-weight: 900;
            text-shadow: 3px 3px 3px #333;
            border-radius: 0 50px;
            /* 왼쪽 위, 오른쪽 아래 = 0px */
            background: linear-gradient(#ff0, #0f0);
        }
    </style>
</head>

<body>
    <div>박스 그림자</div>
</body>

</html>
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글