• <i id='uNs87'><tr id='uNs87'><dt id='uNs87'><q id='uNs87'><span id='uNs87'><b id='uNs87'><form id='uNs87'><ins id='uNs87'></ins><ul id='uNs87'></ul><sub id='uNs87'></sub></form><legend id='uNs87'></legend><bdo id='uNs87'><pre id='uNs87'><center id='uNs87'></center></pre></bdo></b><th id='uNs87'></th></span></q></dt></tr></i><div id='uNs87'><tfoot id='uNs87'></tfoot><dl id='uNs87'><fieldset id='uNs87'></fieldset></dl></div>

      <bdo id='uNs87'></bdo><ul id='uNs87'></ul>

    1. <tfoot id='uNs87'></tfoot>

        <small id='uNs87'></small><noframes id='uNs87'>

        <legend id='uNs87'><style id='uNs87'><dir id='uNs87'><q id='uNs87'></q></dir></style></legend>

        使用 CSS 网格布局跨越所有列/行的项目

        Items that span all columns/rows using CSS grid layout(使用 CSS 网格布局跨越所有列/行的项目)
      1. <tfoot id='ioumu'></tfoot>
              <tbody id='ioumu'></tbody>
            <i id='ioumu'><tr id='ioumu'><dt id='ioumu'><q id='ioumu'><span id='ioumu'><b id='ioumu'><form id='ioumu'><ins id='ioumu'></ins><ul id='ioumu'></ul><sub id='ioumu'></sub></form><legend id='ioumu'></legend><bdo id='ioumu'><pre id='ioumu'><center id='ioumu'></center></pre></bdo></b><th id='ioumu'></th></span></q></dt></tr></i><div id='ioumu'><tfoot id='ioumu'></tfoot><dl id='ioumu'><fieldset id='ioumu'></fieldset></dl></div>
              <bdo id='ioumu'></bdo><ul id='ioumu'></ul>
              <legend id='ioumu'><style id='ioumu'><dir id='ioumu'><q id='ioumu'></q></dir></style></legend>

                1. <small id='ioumu'></small><noframes id='ioumu'>

                  本文介绍了使用 CSS 网格布局跨越所有列/行的项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  随着 CSS 网格布局模块即将在 Firefox 和 Chrome 中发布,我想我会尝试掌握如何使用它.

                  With the CSS Grid Layout Module soon shipping in Firefox and Chrome, I thought that I'd try to get a handle of how to use it.

                  我尝试创建一个简单的网格,其中一个项目 a 跨越所有行的左侧,其他项目(bcde 等)跨越各个行的右侧.跨越行右侧的项目数量是可变的,因此可能有 bcde 等,所以我使用 grid-auto-rows 属性.因此,我无法为 a 定义固定数量的行来跨越,但我希望 a 跨越 所有 可用的行.

                  I've tried to create a simple grid with one item a spanning the left side of all of the rows, with the other items (b, c, d, e, etc.) spanning the right side of individual rows. The amount of items spanning the right side of the rows is variable, so there might be any combination of b, c, d, e, etc., so I'm using the grid-auto-rows property. As such, I cannot define a fixed number of rows for a to span, but I would like a to span all available rows.

                  #container {
                      display: grid;
                      grid-auto-flow: column;
                      grid-auto-rows: auto;
                      grid-template-columns: [left] 4rem [right] 1fr;
                      margin: 0rem auto;
                      max-width: 32rem;
                  }
                  #a {
                      background: lightgreen;
                      grid-column: left;
                      grid-row: 1 / auto;
                      justify-self: center;
                  }
                  #b {
                      grid-area: auto / right;
                      background: yellow;
                  }
                  #c {
                      grid-area: auto / right;
                      background: pink;
                  }
                  #d {
                      grid-area: auto / right;
                      background: lightskyblue;
                  }
                  #e {
                      background: plum;
                      grid-area: auto / right;
                  }

                  <div id="container">
                      <div id="a">a</div>
                      <div id="b">b</div>
                      <div id="c">c</div>
                      <div id="d">d</div>
                      <div id="e">e</div>
                  </div>

                  我应该怎么做才能使 a 跨越所有行而不知道最终会有多少行?

                  What should I do to make a span all rows without knowing how many rows there will end up being?

                  推荐答案

                  我遇到了同样的情况,找到了一个干净的解决方案.

                  I had the same situation and found a clean solution.

                  尝试使用巨大的行跨度值,而不是:

                  Instead of using a huge row span value, try:

                  grid-column: 1/-1;
                  

                  由于负数从右开始计数,此代码指定 grid-column 到最后一列的末尾.

                  As negative number counts from the right, this code specifies the grid-column to the end of the last column.

                  注意:如果这不适用,请在下面的评论中查看 Jonny Green 的解决方案.

                  Note: In case this doesn't apply, check Jonny Green's solution in the below comment.

                  这篇关于使用 CSS 网格布局跨越所有列/行的项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  quot;Status Code:200 OK (from ServiceWorker)quot; in Chrome Network DevTools?(“状态码:200 OK(来自 ServiceWorker)在 Chrome 网络开发工具中?)
                  What is quot;X-Content-Type-Options=nosniffquot;?(什么是“X-Content-Type-Options=nosniff?)
                  SmtpJs API not working! is there any way to send emails using SMTP server with JavaScript or JQuery(SmtpJs API 不工作!有没有办法使用带有 JavaScript 或 JQuery 的 SMTP 服务器发送电子邮件)
                  Can I send email using javascript(我可以使用 javascript 发送电子邮件吗)
                  Select All the objects on canvas using Fabric.js(使用 Fabric.js 选择画布上的所有对象)
                  Crop the image using JavaScript(使用 JavaScript 裁剪图像)
                    • <tfoot id='pJRFU'></tfoot>
                      • <bdo id='pJRFU'></bdo><ul id='pJRFU'></ul>
                        1. <i id='pJRFU'><tr id='pJRFU'><dt id='pJRFU'><q id='pJRFU'><span id='pJRFU'><b id='pJRFU'><form id='pJRFU'><ins id='pJRFU'></ins><ul id='pJRFU'></ul><sub id='pJRFU'></sub></form><legend id='pJRFU'></legend><bdo id='pJRFU'><pre id='pJRFU'><center id='pJRFU'></center></pre></bdo></b><th id='pJRFU'></th></span></q></dt></tr></i><div id='pJRFU'><tfoot id='pJRFU'></tfoot><dl id='pJRFU'><fieldset id='pJRFU'></fieldset></dl></div>

                          <legend id='pJRFU'><style id='pJRFU'><dir id='pJRFU'><q id='pJRFU'></q></dir></style></legend>
                            <tbody id='pJRFU'></tbody>

                            <small id='pJRFU'></small><noframes id='pJRFU'>