如何使用CSS拉伸div的整个高度?[已关闭]

qq24tv8q  于 2023-01-06  发布在  其他
关注(0)|答案(1)|浏览(133)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
七年前就关门了。
Improve this question
如何使用CSS拉伸div的整个高度?
我正在尝试将一个div拉伸100%。应用了min-height: 100%;,但没有结果。

<div class="mydiv"></div>
.mydiv {
min-height: 100%;
}
db2dz4w8

db2dz4w81#

在你的css中,试着添加这个,它对我很有效:)

.divName{ 
    width: 100%; 
    height: 100%; 
    position: fixed; 
    top: 0; 
    left: 0;
    background:red;
 }

相关问题