I've got a 2 column layout blog and i'm using the column-count css property, but the design requires that images and blockquotes in the first column to jut out to the left side (margin-left: -20px), and the 2nd column applies the same thing but on the right side (margin-right:-20px).
Is there a css selector for the 1st or last column? Is it possible to do that or would i have to try something else?
The closest thing you can get is using
td:first-child
andtd:last-child
. DemoExample:
If for some reason you were wanting a specific column not on the outside you could use
td:nth-of-type(n)
or, if there are onlytd
children,td:nth-child(n)
, but this requires you know how manytd
s there are in the row. To do anything more specific you'd have to use javascript