Answers for "text color css gradient generator"

CSS
0

gradient text colors

h1 {
  font-size: 72px;
  background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Posted by: Guest on September-24-2020
0

Color gradient for text

.text {
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0,0,0,.2);
}
Posted by: Guest on December-20-2021

Browse Popular Code Answers by Language