:nth-col
Quick Summary for :nth-col
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Code Usage for :nth-col
/* Selects every odd column in a table */ :nth-col(odd) {   background-color: pink; } 
More Details for :nth-col

:nth-col

Experimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.

The :nth-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. The values odd and even are also valid.

/* Selects every odd column in a table */ :nth-col(odd) {   background-color: pink; } 

Syntax

The nth-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-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 */ :nth-col(2n+1) {   background-color: pink; } 
Result

Specifications

No specification found

No specification data found for css.selectors.nth-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-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

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
Nothing, to my way of thinking, is a better proof of a well ordered mind than a man's ability to stop just where he is and pass some time in his own company.
Seneca
Random CSS Property

break-before

The break-before CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.
break-before css reference