Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

Flexbox และการเลื่อนแนวตั้งในแอปแบบเต็มความสูงโดยใช้ Flexbox API ที่ใหม่กว่าพร้อม HTML


คุณสมบัติ flex เป็นชวเลขสำหรับคุณสมบัติ flex-grow, flex-shrink และ flex-basis คุณสมบัติ flex กำหนดความยาวที่ยืดหยุ่นได้สำหรับสินค้าที่ยืดหยุ่นได้

ตัวอย่างเช่น −

#container article {
   -webkit-flex: 1 1 auto;
   overflow-y: auto;
   height: 0px; /*here the height is set to 0px*/
}

ถ้าคุณต้องการความสูงขั้นต่ำ ให้ใช้ความสูง:100px; ว่ามันเหมือนกับ − min-height:100px;

#container article {
   -webkit-flex: 1 1 auto;
   overflow-y: auto;
   height: 100px; /*here the height is set to 100px*/
}