首页
HTML
HTML Div
试用:水平居中 div 元素
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> div { width: 300px; margin: auto; background-color: #FFF4A3; } </style> <body> <h1>Center align a DIV element</h1> <div> <h2>London</h2> <p>London is the capital city of England.</p> <p>London has over 13 million inhabitants.</p> </div> </body> </html>