How can I apply the following value to the transform CSS property of a div tag: translate(-50%, -50%) translate(-100px, -300px)?
I attempted to use the following jQuery command to set the value:
jQuery('.content').css('transform', 'translate(-50%, -50%) translate(-100px, -300px);');
However, I noticed that there were no visible changes. What is the correct way to apply this transformation?