主頁
CSS
CSS 選擇器
Tryit:類選擇器
執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
更換主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> .center { text-align: center; color: red; } </style> </head> <body> <h1 class="center">Red and center-aligned heading</h1> <p class="center">Red and center-aligned paragraph.</p> </body> </html>