COMPLETE SOLVED QUESTIONS AND
MODEL RESPONSES
◉ transform:translate3d(x,y,z)
Answer: Which transform value defines a 3D translation using
specified parameters for positions on the X-axis, Y-axis and Z-axis?
◉ transform:translateX(x)
Answer: Which transform value defines a 3D translation using only
the value for the X-axis?
◉ transform:translateY(y)
Answer: Which transform value defines a 3D translation using only
the value for the Y-axis?
◉ transform:translateZ(z)
Answer: Which transform value defines a 3D translation using only
the value for the Z-axis?
◉ transform:matrix3d(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)
, Answer: Which transform value defines a 3D transformation using a
4x4 matrix of 16 values?
◉ transform:perspective(n)
Answer: Which transform value defines a perspective view for a 3D
transformed element?
◉ transition
Properties are in this order:
transition: property duration timing-function delay|initial|inherit;
Answer: Which property specifics the four transition properties into
a single property?
◉ No transition will occur
Answer: If you do not specify the duration for a CSS transition, what
happens?
◉ transition-property
Answer: Which property specifies the CSS property that the
transition will affect?
◉ transition-duration