capitalize: Puts the first character of each word in uppercase.

uppercase: Puts all characters of each word in uppercase.

LOWERCASE: Puts all characters of each word in lowercase.



それぞれケース分けしてあります。capitalizeは先頭のみ大文字。uppercaseは大文字
Lowercaseは小文字です。


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>TIPS038 大文字、小文字にする</title>
<style type="text/css">
<!--
p { font: bold 1.2em Verdana; }
p.p1 { text-transform: capitalize; }
p.p2 { text-transform: uppercase; }
p.p3 { text-transform: lowercase; }
-->

</style>
</head>
<body>

<p class="p1">capitalize: Puts the first character of each word in uppercase.</p>
<p class="p2">uppercase: Puts all characters of each word in uppercase.</p>
<p class="p3">LOWERCASE: Puts all characters of each word in lowercase.</p>
<P><BR>
<BR>
それぞれケース分けしてあります。capitalizeは先頭のみ大文字。uppercaseは大文字<BR>
Lowercaseは小文字です。</P>
</body>
</html>