Quellcode |
|
1 2 3 4 5 6 7 8 9 10 |
.box { -webkit-border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -khtml-border-top-left-radius: 10px; -khtml-border-top-right-radius: 10px; -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; } |
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »DerSchlachter« (06.04.2015, 21:52)
Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
<!DOCTYPE html> <html> <head> <style> .box { -webkit-border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -khtml-border-top-left-radius: 10px; -khtml-border-top-right-radius: 10px; -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; border:1px solid #000; } </style> </head> </body> <table class="box"> <tr> <th>Spalte 1</th> <th>Spalte 2</th> <th>Spalte 3</th> </tr> <tr> <td>Zeile 1</td> <td>Zeile 2</td> <td>Zeile 3</td> </tr> <tr> <td>Zeile 1</td> <td>Zeile 2</td> <td>Zeile 3</td> </tr> <tr> <td>Zeile 1</td> <td>Zeile 2</td> <td>Zeile 3</td> </tr> </table> </body> </html> |
1 Besucher