批改状态:合格
老师批语:就是计算方式不同而已
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>box-sizing的意义</title></head><style>.box1 {width: 200px;height: 200px;padding: 20px;margin: auto;box-sizing: content-box;background-color: darkslateblue;}.box2 {width: 200px;height: 200px;padding: 20px;margin: auto;box-sizing: border-box;background-color: rgb(169, 167, 187);}</style><body><div class="box1"></div><div class="box2"></div></body></html>
二者区别效果图:
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号