<!doctype html> <html> <head> <meta charset="utf-8"> <title>css样式介绍</title> <style type="text/css"> span{ color:red; font-size:24px; } </style> </head> <body> <p> 一个人失败的最大<span>原因,</span>是对自己的能力缺乏充分的信心,甚至以为自己必将失败无疑。 </p> </body> </html>