텍스트 변환 사용 텍스트의 대소문자를 설정하는 속성입니다. 가능한 값은 없음, 대문자, 대문자, 소문자입니다.
예시
다음 코드를 실행하여 텍스트의 대소문자를 설정할 수 있습니다.
<html> <head> </head> <body> <p style = "text-transform:capitalize;"> This will be capitalized </p> <p style = "text-transform:uppercase;"> This will be in uppercase </p> <p style = "text-transform:lowercase;"> This will be in lowercase </p> </body> </html>