Kiedy dodam parę wierszy tekstu do komórki "<td>hffsdfsdfsdfsdfsdfsd</td>" rozciągnie się ona w dół i automatycznie to sam dzieje się z komórkami "<td>j</td>
<td></td>"
Jak zrobić aby ich wielkości były od siebie niezależne?
<?xml version=-"1.0" encoding="utf-8" stndalone="no"?> <?xml-stylesheet type="text/css" href="css.css" media="all" title="" charset="utf-8" alternate="no"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" dir="ltr"> <head> <title>tytuł</title> </head> <body> <table> <tr><td>f</td><td></td><td>a</td></tr> <tr><td>j</td><td></td><td>hffsdfsdfsdfsdfsdfsd</td></tr> </table> </body> </html>
body>table>tr>td { display: inline-block; }