Hello teacher, the height in the table cannot be adjusted in the border and tr. The display code is red and the browser cannot display it. It can only be set in td. In addition, my <tr> can be displayed but all are in red. What is the reason?
<title>Title</title> </head> <body> <table border="1" width="25" height="200" > <tr> <td>张麻子</td> <td>70</td> <td>80</td> </tr> <tr> <td>李三</td> <td>88</td> <td>90</td> </tr> </body> </html>
胤彬-2018-10-17 21:09:23
<title>Title</title> </head> <body> <table sytle='border="1" width="25" height="200"' > <tr> <td>张麻子</td> <td>70</td> <td>80</td> </tr> <tr> <td>李三</td> <td>88</td> <td>90</td> </tr> </body> </html>
胤彬-2018-10-17 21:08:49
<title>Title</title></head><body><table style='border="1" width="25" height="200" '><tr> <td>张麻子</td> <td>70</td> <td>80</td></tr><tr> <td>李三</td> <td>88</td> <td>90</td></tr></body></html>