transform-anon-block-1.html (515B)
1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 6 <meta charset="UTF-8"> 7 <style> 8 .parent { 9 border: none; 10 transform-style: preserve-3d; 11 background: red; 12 padding: 0px; 13 } 14 15 .child { 16 width: 100px; 17 height: 100px; 18 background: blue; 19 transform: rotate(45deg); 20 } 21 </style> 22 </head> 23 24 <body> 25 <button class="parent"> 26 <div class="child"></div> 27 </button> 28 </body> 29 </html>