63070054 – เวฟ
✨ elzaphaN TV
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .box{ height: 100px; width: 100px; margin: 5px; position: relative; } .box:nth-child(1), .box:nth-child(2){ background-color: red; } .box:nth-child(3), .box:nth-child(4), .box:nth-child(5){ background-color: blue; } </style> </head> <body> <div class="box"></div> <div class="box"></div> <div class="box"></div> <div class="box"></div> <div class="box"></div> </body> </html>