{"id":28040,"date":"2024-11-24T09:58:24","date_gmt":"2024-11-24T01:58:24","guid":{"rendered":"https:\/\/fwq.ai\/blog\/28040\/"},"modified":"2024-11-24T09:58:24","modified_gmt":"2024-11-24T01:58:24","slug":"%e5%a6%82%e4%bd%95%e4%bd%bf%e7%94%a8-flex-%e6%88%96-grid-%e5%b8%83%e5%b1%80%e5%b0%86-html-%e5%85%83%e7%b4%a0%e6%8e%92%e5%88%97%e6%88%90%e6%8c%87%e5%ae%9a%e6%95%88%e6%9e%9c%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/28040\/","title":{"rendered":"\u5982\u4f55\u4f7f\u7528 flex \u6216 grid \u5e03\u5c40\u5c06 HTML \u5143\u7d20\u6392\u5217\u6210\u6307\u5b9a\u6548\u679c\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173138455234356.jpg\" class=\"aligncenter\" title=\"\u5982\u4f55\u4f7f\u7528 flex \u6216 grid \u5e03\u5c40\u5c06 HTML \u5143\u7d20\u6392\u5217\u6210\u6307\u5b9a\u6548\u679c\uff1f\u63d2\u56fe\" alt=\"\u5982\u4f55\u4f7f\u7528 flex \u6216 grid \u5e03\u5c40\u5c06 HTML \u5143\u7d20\u6392\u5217\u6210\u6307\u5b9a\u6548\u679c\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong> \u5e03\u5c40\u96be\u9898\uff1a\u4f7f\u7528 flex \u6216 grid  html \u5143\u7d20<\/strong><\/p>\n<p>\u8003\u8651\u4ee5\u4e0b html \u7ed3\u6784\uff1a<\/p>\n<pre>&lt;div&gt;\n    &lt;em&gt;1&lt;\/em&gt;\n    &lt;em&gt;2&lt;\/em&gt;\n    &lt;em&gt;3&lt;\/em&gt;\n    &lt;em&gt;4&lt;\/em&gt;\n&lt;\/div&gt;<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u6211\u4eec\u5e0c\u671b\u5728\u4e0d\u6539\u53d8 html \u7ed3\u6784\u7684\u60c5\u51b5\u4e0b\uff0c\u4f7f\u7528 flex \u6216 grid \u5e03\u5c40\uff0c\u5c06\u5143\u7d20\u6392\u5217\u6210\u5982\u4e0b\u6548\u679c\uff1a<\/p>\n<ul>\n<li>1 \u548c 4 \u81ea\u9002\u5e94\u5927\u5c0f<\/li>\n<li>2 \u548c 3 \u6210\u4e24\u884c\uff0c\u5360\u5269\u4f59\u7a7a\u95f4<\/li>\n<\/ul>\n<p><strong>flex \u5e03\u5c40<\/strong><\/p>\n<p><span>\u7acb\u5373\u5b66\u4e60<\/span>\u201c\u201d\uff1b<\/p>\n<p>\u5728 flex \u5e03\u5c40\u4e2d\uff0c\u91c7\u7528\u4ee5\u4e0b\u6837\u5f0f\uff1a<\/p>\n<pre>div {\n  display: flex;\n  justify-content: space-between;\n}\n\nem:nth-child(2), em:nth-child(3) {\n  flex-grow: 1;\n  display: flex;\n  flex-direction: column;\n  justify-content: space-between;\n}<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<ul>\n<li>\u5c06 div \u8bbe\u4e3a flex \u5bb9\u5668\uff0c\u5143\u7d20\u6309 flex \u5e03\u5c40\u6392\u5217\u3002<\/li>\n<li>1 \u548c 4 \u8bbe\u7f6e\u4e3a flex \u9879\u76ee\uff0cflex-grow \u5141\u8bb8\u5b83\u4eec\u81ea\u9002\u5e94\u5927\u5c0f\u3002<\/li>\n<li>2 \u548c 3 \u8bbe\u7f6e\u4e3a\u5d4c\u5957\u7684 flex \u5bb9\u5668\uff0cflex-direction \u4e3a column\uff0c\u6307\u5b9a\u5782\u76f4\u6392\u5217\u3002<\/li>\n<\/ul>\n<p><strong>grid \u5e03\u5c40<\/strong><\/p>\n<p>\u5728 grid \u5e03\u5c40\u4e2d\uff0c\u91c7\u7528\u4ee5\u4e0b\u6837\u5f0f\uff1a<\/p>\n<pre>div {\n  display: grid;\n  grid-template-columns: auto 1fr auto;\n  grid-template-rows: auto auto;\n}\n\nem:nth-child(1) {\n  grid-column: 1;\n  grid-row: 1 \/ span 2;\n}\n\nem:nth-child(2) {\n  grid-column: 2;\n  grid-row: 1;\n}\n\nem:nth-child(3) {\n  grid-column: 2;\n  grid-row: 2;\n}\n\nem:nth-child(4) {\n  grid-column: 3;\n  grid-row: 1 \/ span 2;\n}<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<ul>\n<li>\u5c06 div \u8bbe\u4e3a grid \u5bb9\u5668\uff0c\u5143\u7d20\u6309 grid \u5e03\u5c40\u6392\u5217\u3002<\/li>\n<li>\u8bbe\u7f6e grid-template-columns \u4e3a 3 \u5217\uff0c\u5176\u4e2d\u4e2d\u95f4\u5217\u4e3a\u81ea\u9002\u5e94\u5927\u5c0f\u3002<\/li>\n<li>1 \u548c 4 \u5360\u4e24\u884c\uff0c2 \u548c 3 \u5360\u5176\u4e2d\u4e00\u884c\u3002<\/li>\n<\/ul>\n<p>\u4ee5\u4e0a\u5c31\u662f\u5982\u4f55\u4f7f\u7528 flex \u6216 grid \u5e03\u5c40\u5c06 HTML \u5143\u7d20\u6210\u6307\u5b9a\u6548\u679c\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>\u5e03\u5c40\u96be\u9898\uff1a\u4f7f\u7528 flex \u6216 grid html \u5143\u7d20 \u8003\u8651\u4ee5\u4e0b html \u7ed3\u6784\uff1a &lt;div&gt; &lt;em&gt;1&lt;\/em&gt; &lt;em&gt;2&lt;\/em&gt; &lt;em&gt;3&lt;\/em&gt; &lt;em&gt;4&lt;\/em&gt; &lt;\/div&gt; \u767b\u5f55\u540e\u590d\u5236 \u6211\u4eec\u5e0c\u671b\u5728\u4e0d\u6539\u53d8 html \u7ed3\u6784\u7684\u60c5\u51b5\u4e0b\uff0c\u4f7f\u7528 flex \u6216 grid \u5e03\u5c40\uff0c\u5c06\u5143\u7d20\u6392\u5217\u6210\u5982\u4e0b\u6548\u679c\uff1a 1 \u548c 4 \u81ea\u9002\u5e94\u5927\u5c0f 2 \u548c 3 \u6210\u4e24\u884c\uff0c\u5360\u5269\u4f59\u7a7a\u95f4 flex \u5e03\u5c40 \u7acb\u5373\u5b66\u4e60\u201c\u201d\uff1b \u5728 flex \u5e03\u5c40\u4e2d\uff0c\u91c7\u7528\u4ee5\u4e0b\u6837\u5f0f\uff1a div { display: flex; justify-content: space-between; } em:nth-child(2), em:nth-child(3) { flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; [&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-28040","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/28040","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=28040"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/28040\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=28040"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=28040"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=28040"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}