如何在CSS中移动div

问题描述 投票:-1回答:1

如何将文字位置向上移当我更改div文本符号div的上边距时,它会随之移动sidenav

.sign {
    color: #C9B5AD;
    margin-top: -190px;
    z-index: 3;
    text-align: center;
}
.sidenav {
    background-color: #CEBAB2;
    margin-top: -612px;
    clear: both;
    width: 12%;
    height: 722px;
    float: right;
}

enter image description here

html css position margin
1个回答
0
投票

我想您应该使用transform属性

   transform: translateY(-612px)
© www.soinside.com 2019 - 2024. All rights reserved.