flex是一个组合属性他内部是由三个属性构成的
总的来说flex: 1 的原理就是首先使用flex-basis把原先的宽度给取消掉 然后再用flex-grow和flex-shrink增大的增大缩小的缩小
- flex-grow: 1 这个属性是一个占位的比例几个子元素写不一样的就会动态计算所占的宽度就不同
- flex-shrink: 1 这个属性的意思是当空间不足的时候盒子的缩小比例0代表不会变化
- flex-basis: 0% 这个属性是设置基准宽度并且basis和width同时存在
basis会把width干掉
flex-grow:1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .box { width: 500px; height: 100px; background-color: hotpink; display: flex; } .box div { width: 100px; } .box div:nth-child(1) { flex-grow: 1; } .box div:nth-child(2) { flex-grow: 3; } .box div:nth-child(3) { flex-grow: 1; } </style> </head> <body> <div class="box"> <div>1</div> <div>2</div> <div>3</div> </div> </body> </html>
|
父盒子剩余空间的200
- 第一个盒子扩大1/5,100+40 = 140
- 第二个盒子扩大3/5,100+120=220
- 第三个盒子扩大1/5,100+40= 140
flex-shrink: 1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .box { width: 500px; height: 100px; background-color: hotpink; display: flex; } .box div { width: 200px; } .box div:nth-child(1) { flex-shrink: 1; } .box div:nth-child(2) { flex-shrink: 2; } .box div:nth-child(3) { flex-shrink: 1; } </style> </head> <body> <div class="box"> <div>1</div> <div>2</div> <div>3</div> </div> </body> </html>
|
父盒子的宽度为500,子盒子的宽度为600,超出100,超出的100,如何进行比例缩放
第一个盒子:1/4 * 100 = 25 最终第一个盒子200-25=175
第二个盒子:2/4 * 100 = 50 最终第二个盒子200-50 = 150
第三个盒子:1/4 * 100 = 25 最终第一个盒子200-25=175
flex-basis:0%
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .box { width: 500px; height: 100px; background-color: hotpink; display: flex; } .box div { width: 100px; } .box div:nth-child(1) { flex-basis: 50px; } .box div:nth-child(2) { flex-basis: 100px; } .box div:nth-child(3) { flex-basis: 50px; } </style> </head> <body> <div class="box"> <div>1</div> <div>2</div> <div>3</div> </div> </body> </html>
|