Html Table merged cells_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:40:49
Original
1183 people have browsed it

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title></title></head><body><ol>    <li>基本表格</li>    <table border="2" bordercolor="black" width="300" cellspacing="0" cellpadding="5">        <tr>            <td>1.1</td>            <td>1.2</td>            <td>1.3</td>        </tr>        <tr>            <td>2.1</td>            <td>2.2</td>            <td>2.3</td>        </tr>        <tr>            <td>3.1</td>            <td>3.2</td>            <td>3.3</td>        </tr>    </table>    <br/>    <li>表格合并列</li>    <table border="2" bordercolor="black" width="300" cellspacing="0" cellpadding="5">        <tr>            <td colspan="3" >1.1</td>            <!--<td>1.2</td>-->            <!--<td>1.3</td>-->        </tr>        <tr>            <td>2.1</td>            <td>2.2</td>            <td>2.3</td>        </tr>        <tr>            <td>3.1</td>            <td>3.2</td>            <td>3.3</td>        </tr>    </table>    <br/>    <li>表格合并行</li>    <table border="2" bordercolor="black" width="300" cellspacing="0" cellpadding="5">        <tr>            <td  rowspan="3">1.1</td>            <td>1.2</td>            <td>1.3</td>        </tr>        <tr>            <!--<td>2.1</td>-->            <td>2.2</td>            <td>2.3</td>        </tr>        <tr>            <!--<td>3.1</td>-->            <td>3.2</td>            <td>3.3</td>        </tr>    </table>    <br/>    <li>复杂表格</li>    <table border="2" bordercolor="black" width="300" cellspacing="0" cellpadding="5">        <tr>            <td >1.1</td>            <td colspan="2">1.2</td>            <!--<td>1.3</td>-->        </tr>        <tr>            <td >2.1</td>            <td rowspan="2">                2.2                <br/>                3.2            </td>            <td>2.3</td>        </tr>        <tr>            <td>3.1</td>            <!--<td>3.2</td>-->            <td>3.3</td>        </tr>    </table>    <br/></ol></body></html>
Copy after login

The effect is as follows:


Small note:


Basic knowledge of the table part: Click to open the link


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template