I’ve been using HTML and CSS to style my resume, but I’m having difficulties styling a <tr> element.
Does this not work inside a table ?
-moz-border-radius: 5x;
-webkit-border-radius: 5px;
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.
Yes, it works inside a table on
tdandthelements, but not ontr. You can also use it ontableto round the corners of the whole table.If you want to round a row of cells so that the left- and rightmost elements are rounded, you need to use the
:first-childand:last-childpseudo classes:first-childis not supported by IE6, and while IE7 adds support for it, it still lackslast-child. But that doesn’t matter in your case asborder-radiuswouldn’t work in those browsers anyway.