嘿,我正试图为整个页面添加灰色,我希望它在所有屏幕尺寸中保持一致,无论内部是否有任何内容。
这是我给的CSS: - (外模式容器是我的主要Div)
.outer-modal-container {
background: grey !important;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
但我面临的问题是,除非我输入任何元素,如行或某些文本,“外模式容器”剂量出现(灰色剂量显示)。 outer-modal-container使用其中的元素扩展或调整其高度。我做错了什么?