梦之都
CSS教程
,
text-transform
示例
www.dreamdu.com
www.dreamdu.com
WWW.DREAMDU.COM
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS text-transform 属性示例</title> <style type="text/css" media="all"> p#capitalize { text-transform: capitalize; } p#uppercase { text-transform: uppercase; } p#lowercase { text-transform: lowercase; } </style> </head> <body> <p id="capitalize">www.dreamdu.com</p> <p id="uppercase">www.dreamdu.com</p> <p id="lowercase">WWW.DREAMDU.COM</p> </body> </html>