T
T
Tim32015-09-28 14:19:21
css
Tim3, 2015-09-28 14:19:21

What's wrong with the table?

Hello!
There is a regular table in html and css.
When I enter a trait punk, it jumps, screenshots and code below! Thank you!
1. When nothing is written
592a509b90654c69bd96227acf0f5296.jpg
2. When I add the item "Ilosc godzin"
f37f41d215934a5eb52ff4141cb64895.jpg
Table code:

<table class="table">

  <tbody>
  <tr>
    <td>Tydzien pracy od:</td>
    <td>do:</td>
  </tr>
  <tr>
    <td>Poniedzialek</td>
    <td>ilosc godzin</td>
  </tr>
  <tr>
    <td>Wtorek</td>
    <td>ilosc godzin</td>
  </tr>
  <tr>
    <td>sroda<td>
    <td>ilosc godzin</td>
  </tr>
  <tr>
    <td>Czwartek</td>
    <td>ilosc godzin</td>
  </tr>
  <tr>
    <td>Piatek</td>
    <td>ilosc godzin</td>
  </tr>
  <tr>
    <td>Sobota</td>
    <td>ilosc godzin</td>
  </tr>
  <tr>
    <td>Niedziela</td>
    <td>ilosc godzin</td>
  </tr>
  <tr>
    <td></td>
    <td>summa</td>
  </tr>
  </tbody>
</table>

CSS tables:
table.table{
  width: 534px;
  height: 300px;
  border-spacing: 0px;
}
table.table th{
  height: 50px;
}
table.table td{
  height: 40px;
}
table.table tfoot td{
  height: 50px;
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
3
3luyka, 2015-09-28
@Tim3

<tr>
    <td>sroda<td> // вы забыли закрыть тег - </td>. 
    <td>ilosc godzin</td>
</tr>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question