我需要从下到上移动文字,所以我可以通过两种方式进行操作,无论是顶部还是底部。
如果我使用top,我必须使用负px,对于底部我必须给出更多数字px
通常使用哪种更好 - 负px 或更多数字px [top:-22px;或底部:103px; ]
position: absolute;
top: -22px; /*or bottom: 103px;*/
right: 15px;
text-align: right;
}
答案 0 :(得分:4)
我会选择顶级版本,因为较小的数字对我来说似乎更清楚。我不认为它们之间存在真正的省时差异。使用你想要的。
答案 1 :(得分:2)
我需要从下到上移动文字
如果您通过CSS制作动画,最好使用
transform: translateY(y);
而非使用top
,right
,bottom
或left
制作动画。
以下是5个translate
属性:
transform: translate(x,y)
transform: translateX(x)
transform: translateY(y)
transform: translateZ(z)
transform: translate3d(x,y,z)
进一步阅读: