Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css smooth text shadow

text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
Comment

CSS Text Shadow Effect

 .hover-2 {
  /* the height */
  --h: 1.2em;

  line-height: var(--h);
  color: #0000;
  text-shadow: 
    0 var(--_t,var(--h)) #fff,
    0 0 var(--_c, #000);
  background: 
    linear-gradient(#1095c1 0 0) 
    bottom/100% var(--_d, 0) no-repeat;
  overflow: hidden;
  transition: 0.3s;
}
.hover-2:hover {
  --_d: 100%;
  --_t: 0;
  --_c: #0000;
}
 
Comment

PREVIOUS NEXT
Code Example
Css :: css glow effect 
Css :: html align text anchor 
Css :: div circle 
Css :: center div in tailwind css 
Css :: css horizontal center 
Css :: opacity animation css 
Css :: backwards text css 
Css :: add padding to gnome terminal 
Css :: line break doesnt work css 
Css :: css glow text 
Css :: css content image 
Css :: how to make font awesome responsive bootstrap 
Css :: add space between all html elements flex 
Css :: minmax in grid 
Css :: hide title wordpress 
Css :: font montserrat 
Css :: how to define max number of character for a paragraph css 
Css :: how to hover over an individual cell in table css 
Css :: Css style on particular screen 
Css :: css media queries pc and mobile 
Css :: input start typing in the center 
Css :: css all except last 
Css :: css fill div with background image 
Css :: line through in css 
Css :: background color css rgb 
Css :: line under text css 
Css :: coustomize srollbar 
Css :: padding top 
Css :: rainbow text css 
Css :: underline css still there after text-decoration: none 
ADD CONTENT
Topic
Content
Source link
Name
8+6 =