Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rounding table corners without background image?

Is it possible to round table corners (inline) without using a background image?

like image 333
Aasim Azam Avatar asked Dec 23 '11 05:12

Aasim Azam


1 Answers

Live Demo

table{
    background: red;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
}

sigh and inline...

<table style="background: red;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;">

Not really sure what you mean by converting the cell to a div though.

like image 148
Loktar Avatar answered Nov 07 '22 06:11

Loktar