我正在尝试为移动设备制作网站,但我遇到了灵活图像的问题。我使用 max-width:100% 和 height:auto 但是当我重新加载页面时,我只得到图像的一小部分,看起来像一条黑线......请任何人都可以帮助我。我该怎么办,因为我花了很多时间在这上面却没有结果......
这是我认为需要的css部分:
.mobilenav{display: block;}
/*Class for the logo of the website*/
.logo1{background: url(images/logobank8.png) no-repeat;
margin-top: 2%;
margin-left: 20% ;
max-width: 100%;
height: auto;
}
/*Class for a transparent header which is put at the begining of the page*/
.header1{ background: rgba(74, 84, 91, 0.7);
width: 110%;
height: 50px; }
这是html部分:
<div class="mobilenav">
<div class="header1">
<div class="logo1"></div>
</div>