Answers for "can you blur a border"

CSS
1

how to make border blur css

div{
  width:150px;
  height:150px;
  background-color:black;
  border-radius:15px;
  border-style:solid;
  border-width:1px;
  border-color:red;
  box-shadow: 0px 0px 15px rgba(255,0,0);
}
Posted by: Guest on September-25-2021

Browse Popular Code Answers by Language