3-10.html

来自「一些css样式表的例子供大家学习和参考。」· HTML 代码 · 共 19 行

HTML
19
字号
<html>
<head>
	<title>英文字母大小写</title>
<style>
<!--
p{ font-size:17px; }
p.one{ text-transform:capitalize; }		/* 单词首字大写 */
p.two{ text-transform:uppercase; }		/* 全部大写 */
p.three{ text-transform:lowercase; }	/* 全部小写 */
-->
</style>
   </head>

<body>	
	<p class="one">quick brown fox jumps over the lazy dog.</p>
	<p class="two">quick brown fox jumps over the lazy dog.</p>
	<p class="three">QUICK Brown Fox JUMPS OVER THE LAZY DOG.</p>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?