W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> p.intro { background-color: yellow; } </style> </head> <body> <h1>欢迎来到我的主页</h1> <div class="intro"> <p>我叫唐纳德。</p> <p>我住在达克堡。</p> </div> <p>我最好的朋友是米奇。</p> <p class="intro">我最好的朋友是米奇。</p> </body> </html>