展开窗口时按钮位置会发生变化

时间:2016-07-24 12:43:24

标签: html css

我正在尝试设计一个网页,其中顶部分区是一个带有透明按钮的图像。问题是每次我最小化窗口时,按钮都会改变位置。谁能告诉我这是什么问题?

var student = students[0];
Group.findOne(function(err, group){
console.log(group);
group.people.add(student.id); // <--- id and not instance
})

1 个答案:

答案 0 :(得分:1)

如果你想让按钮浮动在img上,请设置position:absolute; 上面的风格有错误,请尝试下面的全面:

<style>
 #image-div{ background:lightblue;
 }

#top-image{
 width:100px;height:100px;
}

#image-button{background:red;    
 position: absolute;
 left:0;
 width:100px;height:100px; 
}
</style>