Heim  >  Artikel  >  Web-Frontend  >  Css基本样式――――综合设计:表格的制作_html/css_WEB-ITnose

Css基本样式――――综合设计:表格的制作_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:18:261546Durchsuche

<table id="tb">    <tr>        <th>姓名</th>        <th>年龄</th>        <th>性别</th>    </tr>    <tr>        <td>小王</td>        <td>20</td>        <td>男</td>    </tr>    <tr class="alt">        <td>小王</td>        <td>20</td>        <td>男</td>    </tr>    <tr>        <td>小王</td>        <td>20</td>        <td>男</td>    </tr>    <tr class="alt">        <td>小王</td>        <td>20</td>        <td>男</td>    </tr></table>#tb{    border-collapse: collapse;    width: 500px;}#tb td,#tb th{    border: 1px solid bisque;    padding: 5px;}#tb th{    text-align: left;    background-color: aqua;    color: #ffffff;}#tb tr.alt td{    color: black;    background-color: aquamarine;}


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn