|
例1
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=Shift_JIS">
<title>大文字小文字を指定する</title>
<style type="text/css">
<!--
#capitalize {text-transform:capitalize;}
#uppercase {text-transform:uppercase;}
#lowercase {text-transform:lowercase;}
-->
</style>
</head>
<body>
<p ID="capitalize">HTML & Style Sheet</p>
<p ID="uppercase">HTML & Style Sheet</p>
<p ID="lowercase">HTML & Style Sheet</p>
</body>
</html>
こうなります
|