91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css中的align-content屬性的作用

發布時間:2021-09-10 20:55:49 來源:億速云 閱讀:158 作者:chen 欄目:web開發

這篇文章主要講解了“css中的align-content屬性的作用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“css中的align-content屬性的作用”吧!

align-content

作用:

會設置自由盒內部各個項目在垂直方向排列方式。

條件:
必須對父元素設置自由盒屬性display:flex;,并且設置排列方式為橫向排列flex-direction:row;并且設置換行,flex-wrap:wrap;這樣這個屬性的設置才會起作用。
設置對象:

這個屬性是對她容器內部的項目起作用,對父元素進行設置。


取值:
stretch:默認設置,會拉伸容器內每個項目占用的空間,填充方式為給每個項目下方增加空白。第一個項目默認從容器頂端開始排列。

css中的align-content屬性的作用

XML/HTML Code復制內容到剪貼板

  1. <!DOCTYPE=html>  

  2. <html lang="zh-cn">  

  3. <head>  

  4. <meta charset="UTF-8">  

  5. <title>  

  6. Align-content   

  7. </title>  

  8. <style>  

  9.   

  10. #father{   

  11.        

  12.     width:200px;   

  13.     display:flex;   

  14.     flex-direction:row;   

  15.     flex-wrap:wrap;   

  16.     align-content:strech;   

  17.     height:200px;   

  18.     background-color:grey;   

  19. }   

  20. .son1{   

  21.        

  22.       height:30px;   

  23.     width:100px;   

  24.     background-color:orange;   

  25. }   

  26.   

  27. .son2{   

  28.        

  29.     height:30px;   

  30.     width:100px;   

  31.     background-color:red;   

  32. }   

  33.   

  34. .son3{   

  35.        

  36.       height:30px;   

  37.     width:100px;   

  38.     background-color:#08a9b5;   

  39. }   

  40.   

  41.   

  42. </style>  

  43. </head>  

  44. <body>  

  45.   

  46. <div id="father">  

  47.   

  48. <div class="son1">  

  49. q   

  50. </div>  

  51.   

  52. <div class="son2">  

  53. w   

  54. </div>  

  55.   

  56. <div class="son3">  

  57. e   

  58. </div>  

  59. <div class="son3">  

  60. e   

  61. </div>  

  62. <div class="son3">  

  63. e   

  64. </div>  

  65.   

  66.   

  67.   

  68. </div>  

  69.   

  70. </body>  

  71. </html>  

Center:這個會取消項目之間的空白并把所有項目垂直居中。

XML/HTML Code復制內容到剪貼板

  1. <!DOCTYPE=html>  

  2. <html lang="zh-cn">  

  3. <head>  

  4. <meta charset="UTF-8">  

  5. <title>  

  6. 關于文檔元素測試   

  7. </title>  

  8. <style>  

  9.   

  10. #father{   

  11.        

  12.     width:200px;   

  13.     display:flex;   

  14.     flex-direction:row;   

  15.     flex-wrap:wrap;   

  16.     align-content:center;   

  17.     height:200px;   

  18.     background-color:grey;   

  19. }   

  20. .son1{   

  21.        

  22.       height:30px;   

  23.     width:100px;   

  24.     background-color:orange;   

  25. }   

  26.   

  27. .son2{   

  28.        

  29.     height:30px;   

  30.     width:100px;   

  31.     background-color:red;   

  32. }   

  33.   

  34. .son3{   

  35.        

  36.       height:30px;   

  37.     width:100px;   

  38.     background-color:#08a9b5;   

  39. }   

  40.   

  41.   

  42. .son4{   

  43.        

  44.       height:30px;   

  45.     width:100px;   

  46.     background-color:#9ad1c3;   

  47. }   

  48.   

  49. .son5{   

  50.        

  51.       height:30px;   

  52.     width:100px;   

  53.     background-color:rgb(21,123,126);   

  54. }   

  55. </style>  

  56. </head>  

  57. <body>  

  58.   

  59. <div id="father">  

  60.   

  61. <div class="son1">  

  62. q   

  63. </div>  

  64.   

  65. <div class="son2">  

  66. w   

  67. </div>  

  68.   

  69. <div class="son3">  

  70. e   

  71. </div>  

  72. <div class="son4">  

  73. e   

  74. </div>  

  75. <div class="son5">  

  76. e   

  77. </div>  

  78.   

  79.   

  80.   

  81. </div>  

  82.   

  83. </body>  

  84. </html>  

css中的align-content屬性的作用

Flex-start:這個會取消項目之間的空白,并把項目放在容器頂部。

XML/HTML Code復制內容到剪貼板

  1. <!DOCTYPE=html>  

  2. <html lang="zh-cn">  

  3. <head>  

  4. <meta charset="UTF-8">  

  5. <title>  

  6. 關于文檔元素測試   

  7. </title>  

  8. <style>  

  9.   

  10. #father{   

  11.        

  12.     width:200px;   

  13.     display:flex;   

  14.     flex-direction:row;   

  15.     flex-wrap:wrap;   

  16.     align-content:flex-start;   

  17.     height:200px;   

  18.     background-color:grey;   

  19. }   

  20. .son1{   

  21.        

  22.       height:30px;   

  23.     width:100px;   

  24.     background-color:orange;   

  25. }   

  26.   

  27. .son2{   

  28.        

  29.     height:30px;   

  30.     width:100px;   

  31.     background-color:red;   

  32. }   

  33.   

  34. .son3{   

  35.        

  36.       height:30px;   

  37.     width:100px;   

  38.     background-color:#08a9b5;   

  39. }   

  40.   

  41.   

  42. .son4{   

  43.        

  44.       height:30px;   

  45.     width:100px;   

  46.     background-color:#9ad1c3;   

  47. }   

  48.   

  49. .son5{   

  50.        

  51.       height:30px;   

  52.     width:100px;   

  53.     background-color:rgb(21,123,126);   

  54. }   

  55. </style>  

  56. </head>  

  57. <body>  

  58.   

  59. <div id="father">  

  60.   

  61. <div class="son1">  

  62. q   

  63. </div>  

  64.   

  65. <div class="son2">  

  66. w   

  67. </div>  

  68.   

  69. <div class="son3">  

  70. e   

  71. </div>  

  72. <div class="son4">  

  73. e   

  74. </div>  

  75. <div class="son5">  

  76. e   

  77. </div>  

  78.   

  79.   

  80.   

  81. </div>  

  82.   

  83. </body>  

  84. </html>  

css中的align-content屬性的作用

flex-end:這個會取消項目之間的空白并把項目放在容器底部。

align-content:flex-end;

css中的align-content屬性的作用

space-between這個會使項目在垂直方向兩端對齊。即上面的項目對齊容器頂部,最下面一個項目對齊容器底部。留相同間隔在每個項目之間。

align-content:space-between;

css中的align-content屬性的作用


Space-around:這個會使每個項目上下位置保留相同長度空白,使得項目之間的空白為兩倍的單個項目空白。

align-content:space-around;

css中的align-content屬性的作用


Inherit:使得元素的這個屬性繼承自它的父元素。
innitial:使元素這個屬性為默認初始值。

感謝各位的閱讀,以上就是“css中的align-content屬性的作用”的內容了,經過本文的學習后,相信大家對css中的align-content屬性的作用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

宁津县| 肃南| 阿鲁科尔沁旗| 灯塔市| 建阳市| 崇信县| 策勒县| 重庆市| 青龙| 沙洋县| 闽清县| 正定县| 达日县| 利川市| 巴林左旗| 游戏| 灵宝市| 丰台区| 温州市| 南充市| 巩留县| 昭苏县| 科技| 西乡县| 宣化县| 芜湖县| 尉氏县| 中江县| 百色市| 林周县| 巴塘县| 南澳县| 科技| 三穗县| 阳春市| 高唐县| 揭东县| 四子王旗| 河北区| 湾仔区| 枝江市|