0

我的代码如下。超链接在那里,因此如果您单击图片,它会将您带到不同的页面,但该页面不属于我的问题。我想要做的是使用 css 根据您的网络浏览器的高度重新调整图像的大小。在 google chrome 中它可以工作,但在 ie 和 idk 中却没有关于 firefox。如果有人能告诉我出了什么问题并以一种使其适用于所有浏览器的方式重写我的代码,那将不胜感激。

<!DOCTYPE html>

<head>

<style>
.size{height:100%;}
.test{width:auto;height:100%;}
</style>


</head>

<body>

<div class="size">
<a href="test2.html"><img class="test" src="test.jpg" border="0"></a> 
</div>



</body>
4

1 回答 1

0

您可以将图像放入容器中,然后按如下方式设置css

<html>
<head>
 <style>
    a.container { 
      width:100%;
      height:100%;
      display:block;
    }
    a#image1 {
        background: url(YOURIMAGE.jpg) no-repeat center center fixed; 
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
    }

    </style>
</head>

<body>
    <a class="container" id="image1" href="#"></a>
</body>
</html>

然后,您可以将每个要作为链接的标签标识并在 css 中为其创建引用。这不会使整个图像填满页面,也不会成为链接。

于 2013-09-12T18:56:35.650 回答