iLevi
iLevi

Reputation: 936

css, selecting the first child and last child

Can somebody help me to set diferent styles to firstchild and lastchild? I want to set the left side of first element with round corners and the right side of last element. Middle elements without round corners... I have created a fiddle to show my code: http://jsfiddle.net/Mqay8/

Upvotes: 0

Views: 359

Answers (2)

kristaps
kristaps

Reputation: 1723

The label you're trying to style is the second child, since it comes after the input tag. Here's a working version, with the label moved into first position.

Upvotes: 1

Paul Grimshaw
Paul Grimshaw

Reputation: 21014

div :first-child {

}

div :last-child {

}

Upvotes: 2

Related Questions