我的页面标题结构为
<header>
<div class="clouds"></div>
</header>
云不会因屏幕宽度的变化而变化。我想让他们响应。我该如何处理 CSS。
我目前使用以下 CSS 代码。
header{
width:100%;
height:100%;
}
.clouds{
z-index: -98;
position: absolute;
top:0px;
left: 0px;
width:100%;
background: url('../images/clouds.png') repeat-x;
-webkit-background-size: 100%;
-o-background-size: 100%;
background-size: 100% !important;
height: 30%;
min-width: 960px;
}