Để kiểm soát kích thước của Mục linh hoạt trong CSS, hãy sử dụng thuộc tính linh hoạt. Sau đây là đoạn mã kiểm soát kích thước của các mục linh hoạt -
Ví dụ
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .container { display: flex; width: 100%; } div { width: 200px; height: 200px; color: white; text-align: center; font-size: 30px; } .first { background-color: rgb(55, 0, 255); flex: 2 1 auto; } .second { background-color: red; } .third { background-color: rgb(140, 0, 255); } </style> </head> <body> <h1>Controlling flex items dimesions</h1> <div class="container"> <div class="first">First Div</div> <div class="second">Second Div</div> <div class="third">Third Div</div> </div> </body> </html>
Đầu ra
Đoạn mã trên sẽ tạo ra kết quả sau -