如何使用css移动对象

时间:2018-01-16 05:37:11

标签: html css header

请帮我把物体移到最上面。我使用了margin-top但没有工作。

CSS

    section#features .center-box{
    display:block;
    background-color:#22a3df;
    transform: rotate(45deg);
    padding:10px;
    width:40px;
    height:40px;
    margin: 0 auto;
    top:13px;
}

HTML

<div class="center-box">
    <i class="fa fa-desktop"></i>
</div>

How to move an obeject to top

3 个答案:

答案 0 :(得分:1)

将父类添加到容器元素,将子类添加到要进一步移动的元素。

.parent{
  position:relative;
}

.child{
  position:absolute;
  top: -10px;
}

答案 1 :(得分:0)

您使用的是top而不是margin-top

添加margin-top

section#features .center-box{
    display:block;
    background-color:#22a3df;
    transform: rotate(45deg);
    padding:10px;
    width:40px;
    height:40px;
    margin: 13px auto 0;
}

答案 2 :(得分:0)

首先给你的div位置然后用top来定位它:

.center-box{
display:block;
background-color:#22a3df;
transform: rotate(45deg);
padding:10px;
width:40px;
height:40px;
margin: 0 auto;
position:Relative;
top:13px;}