執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> /* Default CSS Values */ hr { display: block; margin-top: 0.5em; margin-bottom: 0.5em; margin-left: auto; margin-right: auto; border-style: inset; border-width: 1px; } </style> </head> <body> <p>A hr element is displayed like this:</p> <hr> <p>A customized hr element (changed border-width):</p> <hr style="border-width:10px;"> </body> </html>