我试图制作div
withbackground image
和 with text message
。当我制作width as 100%
和时,一切都完美无缺height as auto
。我使那个 div 高度是自动的,因为每当我增加font size of the text
那个 div 高度时,它也会动态增加。但是现在我的问题是,当我在 div 中留下空消息时,它不会显示任何消息,因为height:auto
我想显示带有实际背景图像的 div 可显示。即使我将消息留空。是否可以显示具有自动高度的背景图像。
这是我的代码:
#loginContainer {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: url("http://s3.buysellads.com/1237708/176570-1371740695.gif")
no-repeat scroll center center #FF660D; /*for example */
border-color: #FFFFFF;
border-image: none;
border-right: medium solid #FFFFFF;
border-style: none solid solid;
border-width: medium;
left: 0;
margin-left: auto;
margin-right: auto;
position: fixed;
right: 0;
top: 0;
vertical-align: super;
width: 100%;
z-index: 9999999;
}
这是小提琴
这是div 内有空消息的小提琴