边距

作者: daisx | 来源:发表于2017-04-27 19:51 被阅读0次
var box1=document.getElementById("box1");
             var box2=document.getElementById("box2");
             s = " 网页可见区域宽:"+document.body.clientWidth ;
             console.log(s);//1536
             s = " 网页可见区域高:"+document.body.clientHeight;
             console.log(s);//400
             s = " 网页可见区域宽(包括边线和滚动条的宽):"+document.body.offsetWidth
             console.log(s);//1536
             s = " 网页可见区域高(包括边线的宽):"+ document.body.offsetHeight;
             console.log(s);//400
             s = " 网页正文全文宽:"+ document.body.scrollWidth;
             console.log(s);//1536
             s = " 网页正文全文高:" +document.body.scrollHeight;
             console.log(s);//759
             s = " 网页被卷去的高(ff):" +document.body.scrollTop;
             console.log(s);//0
             s = " 网页被卷去的高(ie):"+ document.documentElement.scrollTop;
             console.log(s);//0
             s = " 网页被卷去的左:" +document.body.scrollLeft;
             console.log(s);//0
             s = " 网页正文部分上:"+ window.screenTop;
             console.log(s);//0
             s = " 网页正文部分左:" +window.screenLeft;
             console.log(s);//0
             s = " 屏幕分辨率的高:" +window.screen.height;
             console.log(s);//864
             s = " 屏幕分辨率的宽:" +window.screen.width;
             console.log(s);//1536
             s = " 屏幕可用工作区高度:" +window.screen.availHeight;
             console.log(s);//824
             s = " 屏幕可用工作区宽度:" +window.screen.availWidth;
             console.log(s);//1536
             s = " 你的屏幕设置是(位彩色) " +window.screen.colorDepth ;
             console.log(s);//24
             s = " 你的屏幕设置(像素/英寸) " +window.screen.deviceXDPI ;
             console.log(s);//undefined

相关文章

  • 边距

  • 边距

    外边距margin 相当于平移,本身并无增加。 margin就像移动位置,他不管移动到哪,自身还是这么大小,只不过...

  • 边距合并

    合并外边距的场景: 相邻的两个元素之间的上下边距 父元素与其第一个或最后一个子元素之间 空块元素自身的上下边距 相...

  • 边距合并

    在什么场景下会出现外边距合并?如何合并?如何不让相邻元素外边距合并?给个父子外边距合并的范例。 同一文档流中的两个...

  • 边距合并

    1.在什么场景下会出现外边距合并?如何合并?如何不让相邻元素外边距合并?给个父子外边距合并的范例 答:两个在文档流...

  • 边距合并

    边距合并只发生在处于同一BFC的块级元素之间,且只在垂直方向上。具体有三种情况:1.同级兄弟之间上下边距合并 2....

  • CSS盒模型——外边距合并

    外边距合并:指的是 block 元素的上边距或下边距,优势会合并成一个边距,且合并后的边距大小与合并前最大的边距大...

  • 2019-08-15~LaTeX相关

    页边距设置页边距设置 表格设置表格设置

  • CSS样式布局

    负边距与浮动布局 负边距 所谓的负边距就是margin取负值的情况,如margin:-100px,margin:-...

  • “中套中”与“边距边”

    “中套中” 与“边距边” 我在上一篇文章里曾提到过一个人,杨政,杨政同志好学上进,特别是对建设项目方...

网友评论

      本文标题:边距

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