gpt4 book ai didi

html - CSS 内容调整大小

转载 作者:太空宇宙 更新时间:2023-11-03 18:18:53 24 4
gpt4 key购买 nike

我正在尝试使用 CSS 使图像填充设备屏幕,但我没有运气。图片位于 after: 伪元素和内容标签中。我不能将图像用作背景,因为它必须覆盖 html。有什么想法吗?

@media screen and (orientation:portrait) {
body:after{
content: url(images/IGOVERLAYPAPI.png);
position:fixed;
max-width:100%;
height:auto;
z-index:444;
}

最佳答案

要强制元素覆盖视口(viewport)的尺寸,请尝试:

body:after{
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
}

关于html - CSS 内容调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22261324/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com