我将元素从顶部和左侧绝对定位在 % 中,并以 % 给出尺寸,但是当我重新调整窗口大小时,元素会相互移动。
只是想知道是使用 jQuery 来定位事物还是使用任何其他方式?这是一个小提琴Fiddle
.the_club_photo
{
position:absolute;
width:100%;
height:40%;
top:60px;
left:0px;
background-color:#fff;
overflow:hidden;
}
.question_container
{
position:absolute;
top:47%;
left:0px;
height:30%;
width:80%;
background-color:#2a2a2a;
}
.search_ur_club_container
{
position:absolute;
top:47%;
left:80%;
height:;
width:;
margin:auto 3px;
background-color:#2a2a2a;
}