每次调整页面大小时,所有内容都会移动到适合的位置。但是,我有另一个页面使用相同的CSS样式,它不会移动。这是我的页面代码:
CSS:
1.23
HTML
body{
background-color:#ccefff;
}
footer{
width: 100%;
}
button{
background-color: white;
color: black;
border: 2px solid #e7e7e7;
padding: 16px 32px;
}
button:hover{
background-color: #e7e7e7;
}
.wrapper{
min-height:100%;
}
.wrapper:after{
content: "";
display:block;
}
.wrapper:after{
height: 350px;
}
h1{
font-family: Arial, Helvetica, sans-serif;
font-weight: light;
color: white;
text-align: middle;
}
input[type=text]{
width: 500px;
border: 3px groove #ccc;
margin: 8px 0;
padding: 15px 20px;
-webkit-transition:0.5s;
transition: 0.5s;
box-sizing:border-box;
outline: none;
}
input[type=text]:focus {
border: 3px groove #555;
}
fieldset{
box-shadow: 1px 1px 10px ;
width= 100%;
height= 900px;
background-image:url("PICTURE");
background-size: cover;
}
.text_bot_01{
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color:white;
font-size: 150%;
text-align: right;
}
.partner01
{
border: 2px solid grey;
}
我有一个包装器,但似乎每次我改变一些东西时整个布局都会改变。