The Simple Web (Copy 11680)
✨ Jabont
<html> <head> <title>Let's Start </title> <style> body{ background:#eee; margin:1em; font-family:sans-serif; min-height:80vh; display:flex; } .canvas{ width:60vmin; height:30vmin; overflow:hidden; margin:auto; } .a{ background:BlueViolet; width:60vmin; height:60vmin; border-radius:100%; padding:20px; box-sizing:border-box; } .b{ background:#0003; width:100%; height:100%; border-radius:100%; padding:20px; box-sizing:border-box; } </style> </head> <body> <!-- เขียนเว็บง่ายๆ และดูการแสดงผลด้านซ้ายมือได้เลย --> <div class="canvas"> <div class="a"> <div class="b"> <div class="b"> <div class="b"> <div class="b"> <div class="b"> <div class="b"> <div class="b" style="background:#eee;"> </div> </div> </div> </div> </div> </div> </div> </div> </div> </body> </html>