div 没有内容,也没有显示百分比高度

div with no content and percentage height is not appering

我有一个 div 没有内容,背景图像和宽度和高度应该是百分比。 它不会出现没有内容。

我怎样才能让它出现?

html

<div id="adelediv">
</div>

CSS

   #adelediv {
   float: left;
   height: 100%;
   width: 100%;
   background-image: url(hello.gif);
   background-size: cover;
}

+ 当我以像素为单位时,它可以工作,但我不想以像素为单位,我想要以百分比为单位

给出位置 样式 class

中的属性
Position : absolute;

您可以使用 css 最小高度 属性 设置 div 的最小高度 element.Right 现在父元素没有 height.That 的为什么没有显示

     html, body
     {
    height: 100%;
     }
     #adelediv {
           float: left;
           height:100%;
           width: 100%;
           background-image: url(hello.gif);
           background-size: cover;
        }

https://www.your-plugin.com