我试图创建一个按钮,它位于创建的div的底部,但是,一旦我在元素上使用margin top,它就会移动包括按钮(元素)所在的容器在内的所有内容。Margin-top将整个div推向下而不是仅仅是单个元素
这是我到目前为止有:
.background{
position: relative;
width: 450px;
height: 564px;
background: url(http://placehold.it/450x564) no-repeat;
}
.verify{
color: #ffffff;
position: relative;
}
.link{
margin: 425px 0px 0px 80px;
background: url(http://placehold.it/300x41) no-repeat;
width: 384px;
height: 51px;
position: relative;
}
和HTML:
Confirm your email by following the link below:
所以基本上我想要的背景类是静态的,而容器内的所有要素自由移动调整时对他们的利润。有任何想法吗?
2014-01-06
J-LO
+2
你可以尝试定位子元素'absolute'的'relative'父里面。 –
+0
也许你有一些模型给我们一个清晰的想法? –
+1
@ War10ck正是它! –