Content and Border - 开关

content-box 是默认值

2025-04-11

Written by: tdtc

css edge

对 w and h 计算方式的选择:

只计算元素
包含border and padding

Content box

width = width of the content
height = height of the content

Border box

width = border + padding + width of the content
height = border + padding + height of the content

Ref