Chrome - 当节点悬停在网络检查器中时突出显示网页上的相应元素

发布于 2024-10-30 15:45:53 字数 255 浏览 1 评论 0原文

我正在使用 Chrome 来调试和测试我的网站,但是由于某种原因,当我使用元素检查器并在节点上突出显示时,通常网页本身中的相应​​元素会突出显示以显示宽度/高度/边距/填充等。 ..但是由于某种原因它没有在我的网站上执行此操作,我已经在其他网站上测试过它并且它对它们工作得很好...我也在 Safari 中尝试过它并且在那里它工作?!

我不知道为什么会这样,我唯一的想法是我必须在 CSS 中设置一些东西,以防止使用此功能进行某些样式设置,直到我在 Safari 中对其进行测试。

I am using Chrome to debug and test my website, however for some reason when I use the element inspector, and highlight over a node, usually the corresponding element in the web page itself is highlighted to show width/height/margin/padding etc... however for some reason its not doing this with my site, I have tested it for other websites and it works fine for them... I have also tried it in Safari and in there it works?!

I have no idea why this could be, my only thought is that I must have set something in the CSS which prevents some styling with this feature until I tested it in Safari.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜灵血窟げ 2024-11-06 15:45:53

尝试一下,这是一种解决方法。

CTRL + SHIFT + C 并将鼠标悬停在要检查的元素上。

Give this a try, its sort of a workaround.

press CTRL + SHIFT + C and mouse over the element you want to inspect.

葵雨 2024-11-06 15:45:53

你能说得更具体一些吗? “开启”?

编辑:我确实发现我必须禁用所有这些:

style.webkitTransform = translate3d(...) (Javascript)
-webkit-transform: translate3d(...) (CSS)
-webkit-backface-visibility: hidden (CSS)

相反,您可以使用:

Javacsript

var matrix = new WebKitCSSMatrix();
matrix.e = deltaX;
matrix.f = deltaY;
myElement.style.webkitTransform = matrix;

CSS

-webkit-transform:  matrix(1,0,0,1,deltaX,deltaY);

Could you be more specific? "Turned on"?

Edit: I found indeed that I have to disable all this:

style.webkitTransform = translate3d(...) (Javascript)
-webkit-transform: translate3d(...) (CSS)
-webkit-backface-visibility: hidden (CSS)

In stead you can use:

Javacsript

var matrix = new WebKitCSSMatrix();
matrix.e = deltaX;
matrix.f = deltaY;
myElement.style.webkitTransform = matrix;

CSS

-webkit-transform:  matrix(1,0,0,1,deltaX,deltaY);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文