W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> /* 默认的 CSS 值 */ cite { font-style: italic; } </style> </head> <body> <p>默认情况下,cite 元素会这样显示:</p> <p><cite>The Scream</cite> by Edward Munch.</p> <p>自定义的 cite 元素:</p> <p><cite style="font-style:normal;">The Scream</cite> by Edward Munch. </p> </body> </html>