JavaScript-222:client系列

效果图

在这里插入图片描述

结构

    <div></div>

CSS

        div {
    
    
            width: 200px;
            height: 200px;
            background-color: pink;
            border: 10px solid red;
            padding: 10px;
        }

js

        // client 宽度  和我们 offsetWidth 最大的区别就是 不包含边框
        var div = document.querySelector('div');
        console.log(div.clientWidth);

猜你喜欢

转载自blog.csdn.net/chuan0106/article/details/123401252
222
今日推荐