在CSS中,我们可以通过设置图片的left或top属性来让它在网页中移动。比如说,如果我们想要让一张图片向右边移动20像素,我们可以这样设置:img { : absolute; left: 20px;...
在CSS中,我们可以通过设置图片的left或top属性来让它在网页中移动。
比如说,如果我们想要让一张图片向右边移动20像素,我们可以这样设置:
img {
position: absolute;
left: 20px;
} img {
position: absolute;
top: 20px;
} img {
position: absolute;
left: 20px;
top: 20px;
} img {
transform: translateX(20px);
} img {
transform: translateY(20px);
}