Answers for "css how to create gradients on text outline"

CSS
24

css how to create gradients on text outline

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

Browse Popular Code Answers by Language