CSS背景图像很小

时间:2017-10-16 04:01:53

标签: html css

我正在使用一些css代码为朋友制作一个生物,但非滚动背景很小。也许高度为10像素。这是为什么?

(第一部分工作正常)

<img rel="nofollow" target="_blank" style="position:fixed; width:100%;top:0px;left:0px;z-index:-2;" src="http://www.texturex.com/albums/Brick-Textures/brick%20texture%20red%20wall%20stock%20photo.jpg">

城市图片

<ul target="_blank" style="text-align:center;border:4px background-attachment:fixed;background-image:url(http://hdwplan.com/wp-content/uploads/2017/03/free-hd-city-image.jpg);background-attachment: fixed; background-repeat:no-repeat;background-size:cover;background-position:0em 0px;margin-left: -10em;margin-right: -10; margin-top:2em; " rel="nofollow">

以下是生物图片 (示例)

<a href="" target="_blank" style="float:right;margin-right:40px;margin-bottom;5px;border:0px">
<img src="xxxxxxx" ></a>

</ul>

1 个答案:

答案 0 :(得分:0)

我认为这是由浮动完成的。 <ul>非常小,因为当图像浮出时,它不包含任何内容。在关闭</ul>之前,请尝试清除浮动,然后修复它。

<span style="clear:both;"></span> </ul>

This is what I think from your explanation, you are trying to do, and the resolution to the float problem.