---
title: repeat()
slug: Web/CSS/repeat
tags:
  - CSS Grid
  - Layout
  - Repeat
translation_of: Web/CSS/repeat()
original_slug: Web/CSS/repeat()
---
<div>{{cssref}}</div>

<p><span class="seoSummary"><a href="/en-US/docs/Web/CSS">CSS</a> <code><strong>repeat()</strong></code> 函数表示轨道列表的重复片段,允许以更紧凑的形式写入大量显示重复模式的列或行。</span></p>

<p>该函数可以用于 CSS Grid 属性中 {{cssxref("grid-template-columns")}} 和 {{cssxref("grid-template-rows")}}.</p>

<pre class="brush: css no-line-numbers">/* &lt;track-repeat&gt; values */
repeat(4, 1fr)
repeat(4, [col-start] 250px [col-end])
repeat(4, [col-start] 60% [col-end])
repeat(4, [col-start] 1fr [col-end])
repeat(4, [col-start] min-content [col-end])
repeat(4, [col-start] max-content [col-end])
repeat(4, [col-start] auto [col-end])
repeat(4, [col-start] minmax(100px, 1fr) [col-end])
repeat(4, [col-start] fit-content(200px) [col-end])
repeat(4, 10px [col-start] 30% [col-middle] auto [col-end])
repeat(4, [col-start] min-content [col-middle] max-content [col-end])

/* &lt;auto-repeat&gt; values */
repeat(auto-fill, 250px)
repeat(auto-fit, 250px)
repeat(auto-fill, [col-start] 250px [col-end])
repeat(auto-fit, [col-start] 250px [col-end])
repeat(auto-fill, [col-start] minmax(100px, 1fr) [col-end])
repeat(auto-fill, 10px [col-start] 30% [col-middle] 400px [col-end])

/* &lt;fixed-repeat&gt; values */
repeat(4, 250px)
repeat(4, [col-start] 250px [col-end])
repeat(4, [col-start] 60% [col-end])
repeat(4, [col-start] minmax(100px, 1fr) [col-end])
repeat(4, [col-start] fit-content(200px) [col-end])
repeat(4, 10px [col-start] 30% [col-middle] 400px [col-end])
</pre>

<h2 id="语法">语法</h2>

<h3 id="取值">取值</h3>

<dl>
 <dt>{{cssxref("&lt;length&gt;")}}</dt>
 <dd>正整数长度。</dd>
 <dt>{{cssxref("&lt;percentage&gt;")}}</dt>
 <dd>相对于列网格轨道中网格容器的行内大小以及行网格轨道中网格容器的块大小的非负百分比。如果网格容器的大小取决于它的轨道大小,那么 <code>&lt;percentage&gt;</code> 必须被视为 <code>auto</code>. 用户代理(user-agent)可以将轨道的固有大小贡献调整为网格容器的大小,将轨道的最终大小增加到可以遵守该百分比的最小数量。</dd>
 <dt>{{cssxref("&lt;flex&gt;")}}</dt>
 <dd>带有 <code>fr</code> 单位的非负尺寸指定轨道的弹性系数。任何被 <code>&lt;flex&gt;</code> 指定大小的轨道会根据其弹性系数按比例分配剩余空间。</dd>
 <dt><code>max-content</code></dt>
 <dd>代表占据网格轨道的网格项目所分配的最大内容区域的最大值。</dd>
 <dt><code>min-content</code></dt>
 <dd>代表占据网格轨道的网格项目所分配的最小内容区域的最小值。</dd>
 <dt><code>auto</code></dt>
 <dd>作为最大值,等同于 <code>max-content</code>。作为最小值,它代表占据网格轨道的网格项目的最小尺寸的最大值 (如同{{cssxref("min-width")}}/{{cssxref("min-height")}}所指定的))。</dd>
 <dt><code>auto-fill</code></dt>
 <dd>如果网格容器在相关轴上具有确定的大小或最大大小,则重复次数是最大可能的正整数,不会导致网格溢出其网格容器。如果定义了,将每个轨道视为其最大轨道尺寸大小函数 ( <code>grid-template-rows</code> 或 <code>grid-template-columns</code>用于定义的每个独立值。 否则,作为最小轨道尺寸函数,将网格间隙加入计算. 如果重复次数过多,那么重复值是 <code>1</code> 。否则,如果网格容器在相关轴上具有确定的最小尺寸,重复次数是满足该最低要求的可能的最小正整数。 否则,指定的轨道列表仅重复一次。</dd>
 <dt><code>auto-fit</code></dt>
 <dd>
 <p>行为与 <code>auto-fill</code> 相同,除了放置网格项目后,所有空的重复轨道都将折叠。空轨道是指没有流入网格或跨越网格的网格项目。(如果所有轨道都为空,则可能导致所有轨道被折叠。)</p>

 <p>折叠的轨道被视为具有单个固定轨道大小函数为 <code>0px</code>,两侧的槽都折叠了。</p>

 <p>为了找到自动重复的轨道数,用户代理将轨道大小限制为用户代理指定的值(例如 <code>1px</code>),以避免被零除。</p>
 </dd>
</dl>

<h2 id="例子">例子</h2>

<h3 id="CSS">CSS</h3>

<pre class="brush: css; highlight[3]">#container {
  display: grid;
  grid-template-columns: repeat(2, 50px 1fr) 100px;
  grid-gap: 5px;
  box-sizing: border-box;
  height: 200px;
  width: 100%;
  background-color: #8cffa0;
  padding: 10px;
}

#container &gt; div {
  background-color: #8ca0ff;
  padding: 5px;
}
</pre>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;div id="container"&gt;
  &lt;div&gt;
    This item is 50 pixels wide.
  &lt;/div&gt;
  &lt;div&gt;
    Item with flexible width.
  &lt;/div&gt;
  &lt;div&gt;
    This item is 50 pixels wide.
  &lt;/div&gt;
  &lt;div&gt;
    Item with flexible width.
  &lt;/div&gt;
  &lt;div&gt;
    Inflexible item of 100 pixels width.
  &lt;/div&gt;
&lt;/div&gt;</pre>

<h3 id="结果">结果</h3>

<p>{{EmbedLiveSample("Example", "100%", 200)}}</p>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th>Specification</th>
   <th>Status</th>
   <th>Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("CSS Grid", "#funcdef-repeat", "repeat()")}}</td>
   <td>{{Spec2("CSS Grid")}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>



<p>{{Compat("css.properties.grid-template-columns.repeat")}}</p>