当前位置:  开发笔记 > 前端 > 正文

不要在背景图像的div中显示文本

如何解决《不要在背景图像的div中显示文本》经验,为你挑选了1个好方法。

我有这个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;
}

我不希望文本显示,我该怎么做呢?



1> Ben Blank..:
.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:0overflow:hidden隐藏文字; padding-top:552px无论如何,使元素足够大以显示您的背景图像.这是一个非常便携的解决方案.

推荐阅读
wurtjq
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有