我有这个div:
I do not want this text to display, just here for description
这是它的CSS:
.inauguration-image { margin-top:5px; margin-left:auto; margin-right:auto; background: url("/images/inauguration_block.png") no-repeat; position:relative; width:760px; height:552px; }
我不希望文本显示,我该怎么做呢?
.inauguration-image { margin-top:5px; margin-left:auto; margin-right:auto; background: url("/images/inauguration_block.png") no-repeat; position:relative; width:760px; height:0; padding-top:552px; overflow:hidden; }
设置height:0
和overflow:hidden
隐藏文字; padding-top:552px
无论如何,使元素足够大以显示您的背景图像.这是一个非常便携的解决方案.