Olá pessoal!
O domingo está a ser bom?
Eu estou adiantando trabalho… e surgiu um problema!!!
Não consigo criar uma tabela cujas células têm cantos redondos :?
Estou usando css e o seguinte código:
<style type="text/css">
table.sample {
border-width: 1px 1px 1px 1px;
border-spacing: 2px;
border-style: outset outset outset outset;
border-color: gray gray gray gray;
border-collapse: separate;
background-color: white;
}
table.sample th {
border-width: 1px 1px 1px 1px;
padding: 1px 1px 1px 1px;
border-style: inset inset inset inset;
border-color: gray gray gray gray;
background-color: white;
-moz-border-radius: 0px 0px 0px 0px;
}
table.sample td {
border-width: 1px 1px 1px 1px;
padding: 1px 1px 1px 1px;
border-style: inset inset inset inset;
border-color: gray gray gray gray;
background-color: white;
-moz-border-radius: 0px 0px 0px 0px;
}
</style>
<table class="sample">
<tr>
<th>Header</th>
<td>Content</td>
</tr>
</table>
Mas os meus cantos nunca aparecem redondos!!!
Obrigada por qq ajuda
Cláudia

