What is the purpose of this purple dashed line area?

enter image description here

Does anyone know what this purple area represent?

62780 次浏览

它显示可以展开文本的可用空间。

您可以看到文本后面的虚线区域,这意味着它是可以展开文本的区域。

让我举一个只有一个字符的例子:

enter image description here

And an example with more characters looks like this. It can be seen that length of purple dashed line area is decreased:

enter image description here

可以运行以下代码片段并打开开发工具来查看这个紫色虚线区域:

*, html, body {
box-sizing: border-box;
margin: 0;
}


div {
position: relative;
background-color: lightgreen;
}


button {
display: flex;
width: 100px;
}
<div>
<button>1</button>
</div>

这是空白。例如,你有一个容器有100% 的宽度,里面有两个 div,其中一个有50% 的宽度,另一个有40% 的宽度,这意味着有10% 的空间... 这10% 将显示在这个紫色虚线区域由谷歌检查员。