<style>
#sttttyle {text-align: center; font-size: 20; color: yellow}/*id指定样式*/
body {background-color: blue}/*直接指定标签样式*/
.center {color: green}/*类指定样式*/
</style>
<body>
<p id="sttttyle">这是一个段落</p> /*id指定样式*/
<h5 class="center">h5大法好<h5 /*类指定样式*/
</body>