如何在 css 中移动 div
how to move div in css
如何将文本位置移动到上标
当我更改 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;
}
我猜你应该使用转换 属性
transform: translateY(-612px)
如何将文本位置移动到上标 当我更改 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;
}
我猜你应该使用转换 属性
transform: translateY(-612px)