add shadow beneath text css code example
Example 1: how to add 2 text shadows
p {
text-shadow: 1px 1px 1px #000, 3px 3px 5px blue;
}
Example 2: css add a shadow beneath text
.red-text-shadow {
text-shadow: red 0 5px;
}
p {
text-shadow: 1px 1px 1px #000, 3px 3px 5px blue;
}
.red-text-shadow {
text-shadow: red 0 5px;
}