transform布局不会脱离文档流

Posted gaollard

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了transform布局不会脱离文档流相关的知识,希望对你有一定的参考价值。

transform布局不会脱离文档流

transform布局不会脱离文档流,也不改变文档流的大小和位置。

  • width
  • offsetWidth
  • clientWidth
  • offsetLeft
  • ...

设置元素的 transform 属性后,上述等属性均不会发生改变

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title></title>
    <link rel="stylesheet" href="">
    <style>
        * {
            padding: 0;
            margin: 0;
        }
        .box {
            width: 200px;
            height: 200px;
            background-color: red;
        }
    </style>
</head>
<body>
    <div class="box">box</div>
</body>
<script>
    var box = document.querySelector(‘.box‘)
    console.log(box.offsetWidth) // 200
    console.log(box.offsetLeft) // 0
    box.style.transform = ‘translate3d(10px, 10px, 0)‘
    console.log(box.offsetWidth) // 200
    console.log(box.offsetLeft) // 0
</script>
</html>

以上是关于transform布局不会脱离文档流的主要内容,如果未能解决你的问题,请参考以下文章

html css 脱离文档流 脱离元素的布局遵从啥排布

disposition relative脱离文档流了

网站布局之------浮动(float)和定位(position)(绝对定位,相对定位,静态固定定位),***什么叫脱离文档流?

完全理解float之“不完全脱离文档流”

前端学习随笔:float布局问题------float元素是否脱离了文档流

脱离文档流是啥意思