i have these tabs.
There’s border-spacing that is useful between tabs. but they should be deleted from left and right to make tabs width equal to lower box width. How do i do that??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Remove
border-spacing: 2px 0px, and add this:See: http://jsfiddle.net/thirtydot/aUCvN/6/
The adjacent sibling selector (
+) will work in IE7+ and all modern browsers.(although the rest of your code does not appear to work in IE7)