pan7nikt

Tabelka1

Sep 9th, 2020
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.79 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <style>
  5.             /*edycja atrybutow tabeli oraz komorek*/
  6.             table, td
  7.             {
  8.                 border-style: solid;
  9.                 border-color: black;
  10.                 border-width: 20px;
  11.                 border-collapse: collapse;
  12.             }
  13.             table
  14.             {
  15.                 /*szerokosc i dlugosc tabeli*/
  16.                 width: 200px;
  17.                 height: 200px;
  18.                 /*wysrodkowanie tekstu w komorce*/
  19.                 text-align: center;
  20.                 text-decoration: overline;
  21.                 /*wysrodkowanie tabeli*/
  22.                 margin: auto;
  23.             }
  24.             /*identyfikator, tylko dla jednego elementu na stronฤ™*/
  25.             #kom1
  26.             {
  27.                 background-color: darkgray;
  28.             }
  29.             /*klasa do przypisywania wielu elementom*/
  30.             .szary
  31.             {
  32.                 background-color: darkgray;
  33.             }
  34.         </style>
  35.             <meta charset = "utf-8">
  36.             <title>Tabelki</title>
  37.         <body>
  38.             <table >
  39.                 <tr>
  40.                     <!-- id (raz na strone)-->
  41.                     <td id = "kom1">Asia</td>
  42.                     <td>Ania</td>
  43.                     <td rowspan = "3">Basia<br>Piotr<br>Zosia</td>
  44.                 </tr>
  45.                 <tr>
  46.                     <td>Jan</td>
  47.                     <!-- klasa (wielokrotny uzytek) -->
  48.                     <td class = "szary">Wiktor</td>
  49.                     <!--<td>Piotr</td>-->
  50.                 </tr>
  51.                 <tr>
  52.                     <td>Kasia</td>
  53.                     <td>Marysia</td>
  54.                     <!--<td>Zosia</td>-->
  55.                 </tr>
  56.             </table>
  57.         </body>
  58.    
  59.     </head>
  60.  
  61. </html>
Add Comment
Please, Sign In to add comment