So I am trying to add a perspective transform on an element but it is cutting off the text in Safari. If you open the following CodePen in Chrome it displays normally, but in Safari the white text is cut off. I have searched other questions but none seemed to solve my problem.
-webkit-transform: perspective(26.08696em) rotateX(-30deg);
I was facing the same problem today. I fixed the problem setting a
transform: translateZ(10px);
property to the text that was being cut. Change the value to something that makes sense to you.