Home  >  Article  >  Web Front-end  >  css 表格_html/css_WEB-ITnose

css 表格_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:27:021077browse

border-collapse 属性设置表格的边框是否被折叠成一个单一的边框或隔开:

 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 table { 6     border-collapse: collapse; 7 } 8 </style> 9 </head>10 <body>11 <table>12   <tr>13     <th>第一列</th>14     <th>第二列</th>15   </tr>16   <tr>17     <td>第一列</td>18     <td>第二列</td>19   </tr>20 </table>21 22 <br/>23 <b>注意;</b> 如果没有指定 !DOCTYPE  border-collapse 属性在 IE8 及更早 IE 版本中是不起作用的。24 25 </body>26 </html>

 

Statement:
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