您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇内容主要讲解“html如何将表格边框隐藏”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“html如何将表格边框隐藏”吧!
html将表格边框隐藏的方法:1、使用style属性给table、th、td元素添加“border: none;”样式;2、使用style属性给table元素添加“border-color: transparent;”样式。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
我们有下面一个表格:
<table border="1"> <tr> <th>姓名</th> <th>年龄</th> </tr> <tr> <td>Peter</td> <td>20</td> </tr> <tr> <td>Lois</td> <td>20</td> </tr> </table>
怎么将这个表格的边框隐藏起来?下面介绍一下方法:
1、给table、th、td元素添加border: none;
样式
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <table border="1" style="border: none;"> <tr> <th style="border: none;">姓名</th> <th style="border: none;">年龄</th> </tr> <tr> <td style="border: none;">Peter</td> <td style="border: none;">20</td> </tr> <tr> <td style="border: none;">Lois</td> <td style="border: none;">20</td> </tr> </table> </body> </html>
2、给table元素添加border-color: transparent;
样式
<table border="1" style="border-color: transparent;"> <tr> <th>姓名</th> <th>年龄</th> </tr> <tr> <td>Peter</td> <td>20</td> </tr> <tr> <td>Lois</td> <td>20</td> </tr> </table>
到此,相信大家对“html如何将表格边框隐藏”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。