Answers for "how to make the text visible on background with linear gradient css"

CSS
8

how to apply linear gradient to text in css

.gradient-text {
    background-color: #f3ec78;
    background-image: linear-gradient(45deg, #f3ec78, #af4261);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}
Posted by: Guest on May-07-2020
1

linear gradient on text

h1{  font-size: 64px;
  background-image: linear-gradient(to right, #ba81cf, #6886d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Posted by: Guest on September-10-2021

Code answers related to "how to make the text visible on background with linear gradient css"

Browse Popular Code Answers by Language