mam taki problem, że gdy wstawię tabelę poprzez edytor WYSIWYG w opisie produktu to dodaje mi dużooooo niepotrzebnych złamań wiersza <br/> których nie ma i nie widać po przełączeniu np na widok html w edytorze
kod tabeli w edytorze:
<p>jakiś opis przedmiotu</p>
<table id="product-attribute-specs-table" class="data-table">
<tbody>
<tr class="first odd">
<th class="label">Przeznaczenie</th>
<td class="data last">Samochody<br /></td>
</tr>
<tr class="even">
<th class="label">Rozmiar opony</th>
<td class="data last">15</td>
</tr>
</tbody>
</table>
natomiast po wybraniu zbadaj element w przeglądarce widać w kodzie html:
<p>jakiś opis przedmiotu</p>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<table id="product-attribute-specs-table" class="data-table">
<tbody>
<tr class="first odd">
<th class="label">Przeznaczenie</th>
<td class="data last">Samochody<br /></td>
</tr>
<tr class="even">
<th class="label">Rozmiar opony</th>
<td class="data last">15</td>
</tr>
</tbody>
</table>
czy ktoś wie czemu złamanie linii automatycznie dodają się przed tabelą?? czy to może wina css?