<!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>