ด้วยคุณสมบัติ CSS คุณสามารถใส่
สามตัวเคียงข้างกันใน HTML ใช้คุณสมบัติ CSS float เพื่อให้ได้สิ่งนี้
เพิ่มความสูง:100px และตั้งค่าระยะขอบ
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อวาง
สามตัวเคียงข้างกัน
<!DOCTYPE html> <html> <head> <title>HTML div</title> </head> <body> <div style="width: 100px; float:left; height:100px; background:gray; margin:10px"> First DIV </div> <div style="width: 100px; float:left; height:100px; background:yellow; margin:10px"> Second DIV </div> <div style="width: 100px; float:left; height:100px; background:red; margin:10px"> Third DIV </div> </body> </html>