Skip to content

Instantly share code, notes, and snippets.

@linxuedong
Last active December 13, 2017 17:08
Show Gist options
  • Save linxuedong/7c460b4f22df644e5bb63408f0a92580 to your computer and use it in GitHub Desktop.
Save linxuedong/7c460b4f22df644e5bb63408f0a92580 to your computer and use it in GitHub Desktop.
CSS style of element sizing

Sizing

网页中的任何物体都可以看为 box

Boxes everywhere

width 为 content 宽度

// box-sizing默认值 
* {
  box-sizing: content-box;
}

width 为 content + padding + border, margin 为 元素外内容

* {
  box-sizing: border-box;
}

css 中 百分比(eg. width: 50%;),都指根据最近的父元素属性值进行计算。

行内元素不能设置 width and height, 但可以设置 padding and margin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment