首页
CSS
CSS 盒模型
Tryit: 使用 box-sizing 的结果
运行 ❯
获取你
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> .div1 { width: 300px; height: 100px; border: 1px solid blue; box-sizing: border-box; } .div2 { width: 300px; height: 100px; padding: 50px; border: 1px solid red; box-sizing: border-box; } </style> </head> <body> <h1>With box-sizing</h1> <div class="div1">Both divs are the same size now!</div> <br> <div class="div2">Hooray!</div> </body> </html>