CSS Text Decoration Thickness
Syntax of Text decoration Thickness is
p {
Text-decoration-thickness: ;
}
Note
Its value can be given by auto double 5px etc...
Program
INPUT
<!DOCTYPE html> <html> <head> <style> p.uppercase { text-transform: uppercase; } p.lowercase { text-transform: lowercase; } p.capitalize { text-transform: capitalize; }
Using the text-transform property
This text is transformed to uppercase.
This text is transformed to lowercase.
This text is capitalized.
</style> </head> <body>OUTPUT
![]()