:nth-last-col
Quick Summary for :nth-last-col
<strong>Experimental:</strong> <strong>This is an <a href="/en-US/docs/MDN/Guidelines/Conventionsdefinitions#experimental">experimental technology</a></strong><br>Check the <a href="#browsercompatibility">Browser compatibility table</a> carefully before using this in production.
Code Usage for :nth-last-col
<pre class="brush: css notranslate"><code><span class="token comment">/ Selects every odd column in a table /</span> <span class="token selector">:nth-last-col(odd)</span> <span class="token punctuation">{</span> <span class="token property">background-color</span><span class="token punctuation">:</span> pink<span class="token punctuation">;</span> <span class="token punctuation">}</span> </code></pre>
More Details for :nth-last-col
:nth-last-col
Experimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.
The :nth-last-col() CSS pseudo-class is designed for tables and grids. It accepts the An+B notation such as used with the :nth-child selector, using this to target every nth column before it, therefore counting back from the end of the set of columns. The values odd and even are also valid.
/* Selects every odd column in a table */ :nth-last-col(odd) { background-color: pink; } Syntax
The nth-last-col pseudo-class is specified with a single argument, which represents the pattern for matching elements.
See :nth-child for a more detailed explanation of its syntax.
Formal syntax
:nth-last-col
Examples
Basic example
HTML<table> <tr> <td>one</td> <td>two</td> <td>three</td> <td>four</td> </tr> <tr> <td>one</td> <td>two</td> <td>three</td> <td>four</td> </tr> </table> CSS td { border: 1px solid #ccc; padding: .2em; } /* Odd columns starting with the final column of the table */ :nth-last-col(2n+1) { background-color: pink; } ResultSpecifications
No specification foundNo specification data found for css.selectors.nth-last-col.Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
No compatibility data found for css.selectors.nth-last-col.Check for problems with this page or contribute missing data to mdn/browser-compat-data.
See also
:nth-child, :nth-last-of-type Last modified: Aug 12, 2021, by MDN contributors
Select your preferred language English (US)Français Change language