We would like to know how to make Circle center shadows.
<!-- www . j a v a2s. c o m-->
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
width: 100px;
height: 100px;
background-color: transparent;
box-shadow: 0 0 18px 15px #000 inset;
border: 100px solid #000;
border-radius: 150px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
The code above is rendered as follows: