Answers for "how to make text shadow in css"

CSS
2

text shadow

text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
Posted by: Guest on July-03-2020
1

text shadow effect

//offset 2px right and down with a 5px defusion of gray
h1 {
  text-shadow: 2px 2px 5px gray;
}
Posted by: Guest on June-30-2020
0

text shadow css

/******************************************************************************

                            Online C Compiler.
                Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.

*******************************************************************************/

#include <stdio.h>

int main()
{
   int x;
   x = 10;
   printf("%i",x);
    return 0;
}
Posted by: Guest on August-30-2021
-2

css add a shadow beneath text

.red-text-shadow {
  text-shadow: red 0 5px;
}
Posted by: Guest on October-09-2020

Browse Popular Code Answers by Language