主頁
CSS
CSS 選擇器
Tryit:ID選擇器
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,明/暗
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #para1 { text-align: center; color: red; } </style> </head> <body> <p id="para1">Hello World!</p> <p>This paragraph is not affected by the style.</p> </body> </html>