English 中文(简体)
使用CSS隐藏文本和更改图像
原标题:
  • 时间:2008-12-04 13:02:44
  •  标签:

我正在尝试生成一个包含 CSS 的 HTML 页面,用作图像预览的工具。这里有一个示例:

请转换为中文:http://www.nomorepasting.com/getpaste.php?pasteid=22463

然而,这种方法有几个缺点之一是文本必须始终小于图像。我在这里尝试使用不同的方法:

请将此翻译成中文:http://www.nomorepasting.com/getpaste.php?pasteid=22464

但无法使其工作。有谁能向我展示如何修改第二个链接中的代码以使其像第一个链接一样工作,或者建议一种更好的整体方法?

最佳回答

The error in second one is you haven t specified the height attribute. Try the following, it worked for me.

.class1{
   color:#000;
   background-image:url( images/2.jpg );height:1000px;
}

The reason you are not able to see the back ground image is, since there is nothing inside the div, and the height is not specified the height is 0. Try putting a few elements in the div and you will see that the image is being displayed.

Ramjee: 拉姆杰

问题回答

暂无回答




相关问题
热门标签