主頁
CSS
CSS 邊框
邊框側面
Tryit: 單獨的邊框側
執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
改變主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> body { text-align: center; } /* Four values */ p.four { border-style: dotted solid double dashed; } /* Three values */ p.three { border-style: dotted solid double; } /* Two values */ p.two { border-style: dotted solid; } /* One value */ p.one { border-style: dotted; } </style> </head> <body> <h2>Individual Border Sides</h2> <p class="four">4 different border styles.</p> <p class="three">3 different border styles.</p> <p class="two">2 different border styles.</p> <p class="one">1 border style.</p> </body> </html>