挑战:
我们如何确保最后一行中的所有项目CSS 网格的大小会消耗行中的剩余空间,无论它们如何
解决方案:
利用 CSS 网格的强大功能,我们可以通过 nth-child 和 nth-last-of- 的巧妙组合来实现这种空间控制类型规则。关键在于事先知道网格中的列数。
实现:
示例代码:
.grid { display: grid; grid-template-columns: auto auto auto; justify-items: start; grid-gap: 10px; } .grid div { border: 1px solid #ccc; width: 100%; } .grid > *:nth-child(3n-1) { justify-self: center; text-align: center; } .grid > *:nth-child(3n) { justify-self: end; text-align: right; } .grid > *:nth-child(3n-1):nth-last-of-type(1) { border-color: red; grid-column: span 2; } .grid > *:nth-child(3n-2):nth-last-of-type(1) { border-color: red; grid-column: span 3; }
HTML 示例:
<div class="grid"> <div>text</div> <div>TEXT</div> <div>text</div> <div>text</div> <div>TEXT</div> <div>text</div> <div>text</div> <div>TEXT</div> </div>
通过利用这些 CSS 属性的力量,我们可以有效地控制项目的间距CSS 网格的最后一行,确保美观且灵活的布局。
以上是如何让 CSS 网格的最后一行项目填充剩余空间?的详细内容。更多信息请关注PHP中文网其他相关文章!