<!doctype html> <html> <head> <meta charset="utf-8"> <!--设置文字编码--> <title>认识CSS样式</title> <!--标注文件为css类型--> <style type="text/css"> /*设置行内小块区域文字格式*/ span{ color:red; } </style> </head> <body> <p>你的努力,<span>也许有人会讥讽;</span>你的执着,<span>也许不会有人读懂。</span>在别人眼里你也许是小丑,在自己心中你就是国王!</p> </body> </html>