1. 程式人生 > >實現給一個DIV加陰影效果!

實現給一個DIV加陰影效果!

red 技術分享 html pos cto posit ron nag borde

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>陰影效果</title>
<style type="text/css">
div{
position: absolute;
left: 300px;
top: 300px;
width: 300px;
height: 300px;
box-shadow: 0px 0px 100px 10PX red;
border: 1px solid red;
}
</style>
</head>
<body>
<div>

</div>

</body>
</html>
技術分享圖片

實現給一個DIV加陰影效果!