web-component-designer icon indicating copy to clipboard operation
web-component-designer copied to clipboard

3D Transforms not respected correctly

Open jogibear9988 opened this issue 7 months ago • 2 comments

use following html:

      <div style="position:absolute;left:107px;top:191px;width:220px;height:134px;">
          <button style="width:80px;height:30px;position:absolute;left:58px;top:50px;">Button</button>
      </div>

and css:

    button {
        
        transform: translateZ(50px);
    }
    div {
        perspective: 180px;
        transform-style: preserve-3d;
    }
image

jogibear9988 avatar Jan 30 '24 07:01 jogibear9988