我有一个position: relative
分配给它的容器 div,在这个 div 里面我有一个position: fixed
分配给它的锚标记。不是<a>
相对于其父 div 定位,而是将自身定位到主体。谁能解释我如何解决这个问题?
小提琴:http: //jsfiddle.net/DWMTn/
CSS
*{padding:0;margin:0;}
.main {
width: 300px;
position: relative;
background: #eee;
}
p {
margin-bottom: 20px;
}
.btn {
display: block;
width: 100px;
height: 100px;
background: red;
color: white;
text-align: center;
line-height: 100px;
position: fixed;
right: 0;
bottom: 0;
}