<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>font斜体加粗</title> <style type="text/css"> .first{ color:red; font:italic small-caps bold 1em mormal; } .second{ color:blue; font-style:normal; font-variant:small-caps; font-weight:bold; } </style> </head> <body> <div> <p class="first">Web前端攻城狮(Web Front Siege Lion)</p> <p class="second">CSS层叠样式表(Cascading Style Sheets)</p> </div> </body> </html>