Is there a way to adjust the CSS tx
position without altering other values in translate3d(tx, ty, tz)
? The transform
property is typically manipulated through JavaScript, but I'm only interested in modifying the tx
parameter.
For instance, if the current CSS Code is
transform: translate3d(93px, -185px, 0)
or transform: translate3d(58px, -130px, 0)
, is it possible to change it to transform: translate3d(0, -185px, 0)
or transform: translate3d(0, -130px, 0)
while leaving the rest of the properties untouched?