Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css gradient text

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

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

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;
}
Comment

CSS text gradient

h1 {
color: #524a48;
background: linear-gradient(to right, rgba(255,239,223, 0) 0%, rgba(255,239,223, 1));
opacity: 40%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
Comment

linear gradient in text

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, $color-primary-light, $color-primary-dark);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
Comment

text gradient in css

h1{
  font-size: 72px;
  background: -webkit-linear-gradient(rgb(55, 120, 204), rgb(112, 235, 88));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Comment

css gradient text

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

css gradient text

/* add a grient to you text for all browsers */
.gradient-text {
  background: -webkit-linear-gradient(#3b82f6, #a855f7);	/* <-- create background gradient. */	
  -webkit-background-clip: text;							/* <-- have the gradient clip to the text. */
  -webkit-text-fill-color: transparent;						/* <-- make the text fill transeparent. */
}
Comment

PREVIOUS NEXT
Code Example
Css :: css shadow 
Css :: css top right corner 
Css :: style disabled button 
Css :: make text not selectable html js css 
Css :: how to align divs in a row 
Css :: css glow effect 
Css :: Tailwindcss version check 
Css :: css horizontal center 
Css :: grid center align 
Css :: tailwind border bottom 
Css :: text break css 
Css :: make mat card scrollable 
Css :: drop shadow css 
Css :: css logo color 
Css :: display flex column width auto 
Css :: npx stylelint "**/*.{css,scss}" not working 
Css :: autocomplete widget set z-index 
Css :: google font roboto 
Css :: css pause animation 
Css :: elementor is swiping 
Css :: shadow on top for scroll 
Css :: input start typing in the center 
Css :: how to center an absolute div 
Css :: css border up and down 
Css :: hover effect on sibling element tailwind 
Css :: ul li dot seprator 
Css :: css global variables 
Css :: cut word css 
Css :: convert string to uppercase while typing 
Css :: css use value of attribute 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =