CSS3 border-radius on display:table-row element?

I'm afraid this there is no way to apply border radius on table rows. However, the workaround is pretty simple: just apply the background color and the border radius to the cells If you remove the background color from the table rows, and you can add this: item > div { background-color: #ccc; } . Item > div:first-child { border-radius: 10px 0 0 10px; -moz-border-radius: 10px 0 0 10px; } .

Item > div:last-child { border-radius: 0 10px 10px 0; -moz-border-radius: 0 10px 10px 0; } It will work even if you change your class names You can see it in action here: jsfiddle.net/jaSs8/1.

I'm afraid this there is no way to apply border radius on table rows. However, the workaround is pretty simple: just apply the background color and the border radius to the cells. If you remove the background color from the table rows, and you can add this: .

Item > div { background-color: #ccc; } . Item > div:first-child { border-radius: 10px 0 0 10px; -moz-border-radius: 10px 0 0 10px; } . Item > div:last-child { border-radius: 0 10px 10px 0; -moz-border-radius: 0 10px 10px 0; } It will work even if you change your class names.

You can see it in action here: jsfiddle.net/jaSs8/1.

Maybe the problem is in divContainer class. Try to change the display attribute to table-row.

I can't have a table-row inside a table-row. There has to be a table element – ZolaKt Mar 7 at 1:10.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions