I am using thse box
Border radius
.box{
width:200px;
height:200px;
background-color:blue;
box-shadow:-20px 0px red;
}
<html>
<head><head>
<body>
<div class="box">
</div>
</body>
</html>
how can solve this?????
I am using thse box
Border radius
.box{
width:200px;
height:200px;
background-color:blue;
box-shadow:-20px 0px red;
}
<html>
<head><head>
<body>
<div class="box">
</div>
</body>
</html>
how can solve this?????
Create an innner box shadow using CSS like this....
box-shadow: inset 0px 0px 5px red;
Notice how the word inset is the only difference from a normal box shadow.
Use box-shadow: inset apx bpx cpx color;.
.box{
width:200px;
height:200px;
background-color:blue;
box-shadow: inset 0px 0px 20px red;
}
<html>
<head><head>
<body>
<div class="box">
</div>
</body>
</html>