{"id":27066,"date":"2024-11-24T10:56:25","date_gmt":"2024-11-24T02:56:25","guid":{"rendered":"https:\/\/fwq.ai\/blog\/27066\/"},"modified":"2024-11-24T10:56:25","modified_gmt":"2024-11-24T02:56:25","slug":"%e5%a6%82%e4%bd%95%e4%bd%bf%e7%94%a8-grid-%e5%b8%83%e5%b1%80%e5%ae%9e%e7%8e%b0%e9%a1%b6%e9%83%a8%e5%af%b9%e9%bd%90%ef%bc%9f-2","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/27066\/","title":{"rendered":"\u5982\u4f55\u4f7f\u7528 Grid \u5e03\u5c40\u5b9e\u73b0\u9876\u90e8\u5bf9\u9f50\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173115391713360.jpg\" class=\"aligncenter\" title=\"\u5982\u4f55\u4f7f\u7528 Grid \u5e03\u5c40\u5b9e\u73b0\u9876\u90e8\u5bf9\u9f50\uff1f\u63d2\u56fe\" alt=\"\u5982\u4f55\u4f7f\u7528 Grid \u5e03\u5c40\u5b9e\u73b0\u9876\u90e8\u5bf9\u9f50\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong>\u5982\u4f55\u5b9e\u73b0 grid \u5e03\u5c40\u9876\u90e8\u5bf9\u9f50\uff1f<\/strong><\/p>\n<p>\u4f60\u5728\u4f7f\u7528 grid \u521b\u5efa\u9875\u9762\u5e03\u5c40\u65f6\u9047\u5230\u4e00\u4e2a\u95ee\u9898\uff0c\u5373\u4e2d\u95f4\u548c\u53f3\u4fa7\u7684\u5185\u5bb9\u6ca1\u6709\u9876\u90e8\u5bf9\u9f50\uff0c\u5982\u4e0b\u6240\u793a\uff1a<\/p>\n<pre>1\n2 3\n  4\n  5 6\n    7<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u4f60\u60f3\u8981\u7684\u7ed3\u679c\u662f\uff1a<\/p>\n<pre>1 3 6\n2 4 7\n  5<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236    \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n<pre>&lt;div class=\"fruit-grid\"&gt;\n    &lt;div class=\"fruit\"&gt;hello1&lt;\/div&gt;\n    &lt;div class=\"fruit\"&gt;hello2&lt;\/div&gt;\n    &lt;div class=\"fruit\"&gt;hello3&lt;\/div&gt;\n    &lt;div class=\"fruit\"&gt;hello4&lt;\/div&gt;\n    &lt;div class=\"fruit\"&gt;hello5&lt;\/div&gt;\n    &lt;div class=\"fruit\"&gt;hello6&lt;\/div&gt;\n    &lt;div class=\"fruit\"&gt;hello7&lt;\/div&gt;\n&lt;\/div&gt;<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236    <\/p>\n<pre>.fruit-grid {\n  display: grid;\n  grid-template-columns: repeat(3, 1fr);\n  gap: 10px;\n  align-items: start;\n}\n\n.fruit {\n  width: 100%;\n  margin-bottom: 10px;\n}\n\n\/* \u663e\u793a\u5728\u6700\u5de6 *\/\n.fruit:nth-child(1),\n.fruit:nth-child(2) {\n  grid-column: 1;\n}\n\n\/* \u663e\u793a\u5728\u4e2d\u95f4 *\/\n.fruit:nth-child(3),\n.fruit:nth-child(4),\n.fruit:nth-child(5) {\n  grid-column: 2;\n}\n\n\/* \u663e\u793a\u5728\u6700\u53f3 *\/\n.fruit:nth-child(6),\n.fruit:nth-child(7) {\n  grid-column: 3;\n}<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\u7684\u5173\u952e\u662f\u6dfb\u52a0 grid-auto-flow: dense \u5230 .fruit-grid\u3002\u6b64\u5c5e\u6027\u4f7f\u5143\u7d20\u5c3d\u53ef\u80fd\u4f7f\u7528\u524d\u9762\u7a7a\u7684\u7f51\u683c\uff0c\u800c\u4e0d\u662f\u4ea7\u751f\u65b0\u7684\u7f51\u683c\u3002<\/p>\n<p>\u4fee\u6539\u540e\u7684\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n<pre>.fruit-grid {\n  ...\n  grid-auto-flow: dense;\n}<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u52a0\u4e86\u8fd9\u6761\u8bed\u53e5\u540e\uff0c\u4f60\u7684\u5e03\u5c40\u5c06\u4ee5\u4f60\u60f3\u8981\u7684\u5f62\u5f0f\u6b63\u786e\u5bf9\u9f50\uff1a<\/p>\n<pre>1 3 6\n2 4 7\n  5<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236    \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u5982\u4f55\u4f7f\u7528 Grid \u5e03\u5c40\u5b9e\u73b0\u9876\u90e8\u5bf9\u9f50\uff1f\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5982\u4f55\u5b9e\u73b0 grid \u5e03\u5c40\u9876\u90e8\u5bf9\u9f50\uff1f \u4f60\u5728\u4f7f\u7528 grid \u521b\u5efa\u9875\u9762\u5e03\u5c40\u65f6\u9047\u5230\u4e00\u4e2a\u95ee\u9898\uff0c\u5373\u4e2d\u95f4\u548c\u53f3\u4fa7\u7684\u5185\u5bb9\u6ca1\u6709\u9876\u90e8\u5bf9\u9f50\uff0c\u5982\u4e0b\u6240\u793a\uff1a 1 2 3 4 5 6 7 \u767b\u5f55\u540e\u590d\u5236 \u4f60\u60f3\u8981\u7684\u7ed3\u679c\u662f\uff1a 1 3 6 2 4 7 5 \u767b\u5f55\u540e\u590d\u5236 \u767b\u5f55\u540e\u590d\u5236 \u4ee3\u7801\u5982\u4e0b\uff1a &lt;div class=&#8221;fruit-grid&#8221;&gt; &lt;div class=&#8221;fruit&#8221;&gt;hello1&lt;\/div&gt; &lt;div class=&#8221;fruit&#8221;&gt;hello2&lt;\/div&gt; &lt;div class=&#8221;fruit&#8221;&gt;hello3&lt;\/div&gt; &lt;div class=&#8221;fruit&#8221;&gt;hello4&lt;\/div&gt; &lt;div class=&#8221;fruit&#8221;&gt;hello5&lt;\/div&gt; &lt;div class=&#8221;fruit&#8221;&gt;hello6&lt;\/div&gt; &lt;div class=&#8221;fruit&#8221;&gt;hello7&lt;\/div&gt; &lt;\/div&gt; \u767b\u5f55\u540e\u590d\u5236 .fruit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: start; } [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-27066","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/27066","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=27066"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/27066\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=27066"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=27066"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=27066"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}