Answers for "text border blur css"

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
0

css blur text

.blurry-text {
   color: transparent;
   text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
Posted by: Guest on January-12-2022

Browse Popular Code Answers by Language