how to make shadow for text on CSS | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 12

how to make shadow for text on CSS

please help me! I want to make shdow for this code: https://code.sololearn.com/WXQe0VOKwhqz/?ref=app

24th Jul 2017, 7:05 AM
AL.The.Flame!
AL.The.Flame! - avatar
5 Respuestas
+ 1
p { text-shadow: 1px 1px 1px #000; } The first two values specify the length of the shadow offset. The first value specifies the horizontal distance and the second specifies the vertical distance of the shadow. The third value specifies the blur radius and the last value describes the color of the shadow
25th Jul 2017, 4:50 AM
Marwen AOUITI
Marwen AOUITI - avatar
+ 5
<!DOCTYPE html> <html> <head> <style> h2 { text-shadow: 2px 2px #FF0000; } </style> </head> <body> <h2>Text-shadow effect</h2> <p style="color:red">Internet Explorer 9 and earlier do not support the text-shadow property.</p> </body> </html> It's simple
24th Jul 2017, 7:11 AM
Swarnab Das
Swarnab Das - avatar
+ 4
Just Remember this- text-shadow: h-shadow v-shadow blur-radius color;
24th Jul 2017, 7:12 AM
Swarnab Das
Swarnab Das - avatar
+ 2
p { text-shadow: 1px 2px 3px #123456; } (1px horizontal, 2px vertical, 3px blur, #123456 hex color
27th Jul 2017, 8:49 AM
Muse Designer
Muse Designer - avatar
- 1
heck ya my guy
27th Feb 2020, 7:13 PM
Kate Lando
Kate Lando - avatar