元素的OffsetHeight在不同分辨率下不正确

时间:2019-05-15 09:16:14

标签: jquery

在chrome浏览器中,我遇到了一个问题,即偏移高度和宽度会以不同的分辨率更改,而更改后的值将不正确。

例如:如果我创建一个高度为209px且宽度为331px的div元素,并将样式包括为边框:1px,则为纯红色;因此,现在预期的offsetHeight应该为211px,但是当我在计算机中配置以下分辨率时,将chrome缩放到125%时,其显示为210px。
电脑分辨率
  enter image description here >

HTML代码应如下所示:

<html>
<head>
</head>
<style></style>
<body>
<div id= 'container' align="center" style=" height:209px; width: 331px; background-color:#FFFFFF; border: 1px solid red; float:left" id="container0" ></div>
</body>
</html>

@ 150%镀铬;

偏移量和ClientHeight为150%
enter image description here >

@ 125%的镀铬;

偏移量和ClientHeight为125%
enter image description here

0 个答案:

没有答案