Home > Web Front-end > HTML Tutorial > html split cell_html/css_WEB-ITnose

html split cell_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 12:17:28
Original
2413 people have browsed it

One of the interview questions is to achieve the effect of the table below. I tried several times and couldn't achieve it. Please tell me if there is any problem with this question.
Specify the reason. If there is no problem, give the correct html code. Thank you


Reply to the discussion (solution)

I can only merge but never heard of splitting.

<table border="1">    <tr>        <td rowspan=2>1</td>        <td>2</td>        <td>3</td>    </tr>    <tr>        <td rowspan=2 colspan=2>5</td>    </tr>    <tr>        <td>4</td>    </tr></table>
Copy after login