当前位置:首页 > 行业动态 > 正文

html如何去掉表格边框

要去掉HTML表格的边框,可以使用CSS样式,具体操作如下:

1、在HTML文件中创建一个表格,

<!DOCTYPE html>
<html>
<head>
<style>
  table {
    bordercollapse: collapse;
    width: 50%;
  }
  th, td {
    border: none;
    padding: 8px;
    textalign: left;
  }
  th {
    backgroundcolor: #f2f2f2;
  }
</style>
</head>
<body>
<h2>无边框表格</h2>
<table>
  <tr>
    <th>姓名</th>
    <th>年龄</th>
  </tr>
  <tr>
    <td>张三</td>
    <td>25</td>
  </tr>
  <tr>
    <td>李四</td>
    <td>30</td>
  </tr>
</table>
</body>
</html>

2、在上面的代码中,我们使用了bordercollapse: collapse;属性来合并单元格边框,我们使用border: none;属性来去掉每个单元格的边框。

3、我们还为表头(th)添加了背景颜色,使其与无边框的单元格区分开。

0

随机文章