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

highhand發表於2021-09-09

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

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/810/viewspace-2817081/,如需轉載,請註明出處,否則將追究法律責任。

相關文章