1. 盒模型

标准盒模型 + IE 盒模型(怪异盒模型)

box-sizing: content-box  /*标准盒模型:default*/
box-sizing: border-box   /*IE 盒模型:padding border 算在 宽高中*/

1.1. js 获取盒模型的宽高

dom.style.height; // 只能获取内联样式
dom.currentStyle.width; // IE,3种都能获得
window.getComputedStyle(dom).width; // 其他浏览器,3种都能获得
dom.getBoundingClientRect().width; // 计算一个元素在视窗中的绝对位置以及宽,高。
Copyright © Guanghui Wang all right reserved,powered by GitbookFile Modified: 2019-08-25 13:56:34

results matching ""

    No results matching ""