已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。
昨天关门了。
Improve this question
正如你所看到的浏览器显示当前的宽度设置为100vw,但我的元素显然不是100vw,因为如果它是它应该已经覆盖整个页面screenshot of problem更多细节更多细节更多细节请让我张贴的问题,我没有更多的细节
element.style {
width: 100vw;
height: calc(100vh - 70px);
left: 768px;
top: 209px;
}
#Actions {
border-top: 20px solid #0a0a0a66;
background-color: #0a0a0a66;
padding: 10px 20px;
border-radius: 10px;
position: absolute;
top: 0px;
left: 700px;
}
section {
height: -moz-fit-content;
height: fit-content;
width: -moz-fit-content;
width: fit-content;
max-height: -moz-fit-content;
max-height: fit-content;
max-width: -moz-fit-content;
max-width: fit-content;
min-height: -moz-fit-content;
min-height: fit-content;
min-width: -moz-fit-content;
min-width: fit-content;
color: #fff;
font-size: 24px;
font-weight: 900;
}
*, *::before, *::after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
user agent stylesheet
section {
display: block;
}
*, *::before, *::after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
*, *::before, *::after {
padding: 0;
margin: 0;
box-sizing: border-box;`
1条答案
按热度按时间e3bfsja21#
如果没有太多的细节和页面来重现这个问题,我会猜测
max-width: fit-content
* 重置 * 了宽度。你能试着删除这个声明,看看宽度现在是否占据了100vw吗?