Search
 
SCRIPT & CODE EXAMPLE
 

CSS

text color as gradient 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;
}
Comment

text-color gradient css

h1 {
  font-size: 72px;
  background: -webkit-linear-gradient(#f3ec78, #af4261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Comment

how to use gradient on font 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;
}
Comment

gradient text color css

h4 {
background: linear-gradient(to right, #494964, #6f6f89);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;}
Comment

PREVIOUS NEXT
Code Example
Css :: rainbow text with css 
Css :: align div to right side of parent 
Css :: swiper center slides but not first slide 
Css :: limit p html 
Css :: textview android text align center 
Css :: phone media query css 
Css :: tailwind css cdn 
Css :: remove the glow in bootstrap input 
Css :: instagram gradient css 
Css :: absolute position center 
Css :: alternatives to display none 
Css :: responsive css 
Css :: button mouse icon hover css 
Css :: diable focus button css 
Css :: remove color and underline from link css 
Css :: input date icon width 
Css :: hiden file upload button css 
Css :: adding shadow to a div 
Css :: border box reset 
Css :: tailwindcss init full 
Css :: button on top right corner css 
Css :: mat select remove underline 
Css :: highlight table row on hover 
Css :: centre div vertically and horizontally 
Css :: how to write text on video in html 
Css :: silver hex code 
Css :: how to right align a block element in css 
Css :: add border to table css 
Css :: why are suacer pans made of bakelite 
Css :: html input background color 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =