Instalare: Panoul de Control - Design - Administrarea design-ului (CSS) - adăugați stilurile:
Code
/* Tabel pentru fitbaliști */
.bordered {font-size:10pt;border: solid #ccc 1px;-moz-border-radius: 6px;-webkit-border-radius: 6px;border-radius: 6px; *border-collapse: collapse; /* Для IE7 и старше */border-spacing: 0;width: 100%; }
.bordered tr:hover {background: #eeeeee;text-shadow: 0px 1px 0px #fff; cursor: pointer;-o-transition: all 0.1s ease-in-out;-webkit-transition: all 0.1s ease-in-out;-moz-transition: all 0.1s ease-in-out;-ms-transition: all 0.1s ease-in-out;transition: all 0.1s ease-in-out; }
.bordered td, .bordered th {border-left: 1px solid #ccc;border-top: 1px solid #ccc;padding: 5px;text-align: left;}
.bordered th {background-color: #14389a;background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dcdcdc));background-image: -webkit-linear-gradient(top, #ffffff, #dcdcdc);background-image: -moz-linear-gradient(top, #ffffff, #dcdcdc);background-image: -ms-linear-gradient(top, #ffffff, #dcdcdc);background-image: -o-linear-gradient(top, #ffffff, #dcdcdc);background-image: linear-gradient(top, #ffffff, #dcdcdc);-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; -moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset; box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; border-top: none;text-shadow: 0 1px 0 rgba(255,255,255,.5);}
.bordered td:first-child, .bordered th:first-child {border-left: none;}
.bordered th:first-child {-moz-border-radius: 6px 0 0 0;-webkit-border-radius: 6px 0 0 0;border-radius: 6px 0 0 0;}
.bordered th:last-child {-moz-border-radius: 0 6px 0 0;-webkit-border-radius: 0 6px 0 0;border-radius: 0 6px 0 0;}
.bordered tr:last-child td:first-child {-moz-border-radius: 0 0 0 6px;-webkit-border-radius: 0 0 0 6px;border-radius: 0 0 0 6px;}
.bordered tr:last-child td:last-child {-moz-border-radius: 0 0 6px 0;-webkit-border-radius: 0 0 6px 0;border-radius: 0 0 6px 0;}
/* Tabel pentru fitbaliști */
iar unde va fi tabelul:
Code
<table class="bordered"><tbody>
</tbody><thead><tr><th>Nr</th><th>Echipa</th><th>V</th><th>M</th></tr></thead>
<tbody><tr><td>1</td><td>CFR Cluj</td><td>11</td><td>21</td></tr>
<tr><td>2</td><td>Rapid Bucureşti</td><td>9</td><td>21</td></tr>
<tr><td>3</td><td>Dinamo Bucureşti</td><td>9</td><td>21</td></tr>
<tr><td>4</td><td>Viitorul Constanţa</td><td>7</td><td>17</td></tr>
<tr><td>5</td><td>Oţelul Galaţi</td><td>6</td><td>16</td></tr>
<tr><td>6</td><td>Gloria Bistriţa</td><td>6</td><td>15</td></tr>
<tr><td>7</td><td>Turnu Severin</td><td>5</td><td>14</td></tr>
<tr><td>8</td><td>Steaua Bucureşti</td><td>5</td><td>14</td></tr>
<tr><td>9</td><td>Dacia Chișinău</td><td>5</td><td>13</td></tr>
<tr><td>10</td><td>Universitatea Cluj</td><td>4</td><td>13</td></tr>
<tr><td>11</td><td>CSMS Iaşi</td><td>4</td><td>11</td></tr>
<tr><td>12</td><td>Concordia Chiajna</td><td>4</td><td>10</td></tr>
<tr><td>13</td><td>FC Braşov</td><td>3</td><td>9</td></tr>
<tr><td>14</td><td>Pandurii Târgu Jiu</td><td>2</td><td>9</td></tr>
<tr><td>15</td><td>Gaz Metan Mediaş</td><td>9</td><td>2</td></tr>
</tbody></table>
Rezultatul: 