如何以这种方式进行溢出,使图像从上到下切割,而不是从下到上?如何改变惯常效果。
答案 0 :(得分:1)
可以尝试将图像设置为背景吗?
background:url('image.jpg') bottom center;
那么有固定的高度?这是我能想到的唯一方式
答案 1 :(得分:1)
试试这个:
#id {
background: url('image.jpg') bottom center;
width:50px;
height:50px;
}
您必须相应地更改高度和宽度以适合您的图像。
希望这有帮助。