Reputation: 936
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
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