The Simple Web (Copy 12390)
✨ SASITHORN SRIJUN
<html> <head> <title>Let's Start</title> <style> body{ background:#eee; margin:1em; font-family:sans-serif; } .canvas{ background:red; width:100%; height:300px; perspective:100px; position:relative; bottom:0px; } .table{ position:absolute; background:#000; width:100%; height:200px; transform: rotateX(45deg); } </style> </head> <body> <!-- เขียนเว็บง่ายๆ และดูการแสดงผลด้านซ้ายมือได้เลย --> <div class="canvas"> <div class="table"> </div> </div> </body> </html>