美文网首页
026 JS盒模型

026 JS盒模型

作者: 泷汰泱 | 来源:发表于2019-10-12 12:04 被阅读0次

    JS盒模型 *********

    1、width | height

    • parseInt(getComputedStyle(ele, null).getPropertyValue('width'))
    • parseInt(getComputedStyle(ele, null).getPropertyValue('height'))

    2、padding + width | padding + height

    • clientWidth
    • clientHeight

    3、border + padding + width | border + padding + height

    • offsetWidth
    • offsetHeight

    4、结合绝对定位,距离最近定位父级的Top | Left

    • offsetTop
    • offsetLeft

    相关文章

      网友评论

          本文标题:026 JS盒模型

          本文链接:https://www.haomeiwen.com/subject/iurdectx.html