标签:meta har .com com tle type html 示例 pre
今天同事向我问了一个问题,他要设置table的边框,说实话,我也很少弄过table的边框。
通过差一些资料http://blog.sina.com.cn/s/blog_565812e60100czbn.html,
我发现设置table的CSS为{border-collapse:collapse;border:none;},再设置td的CSS为{border:solid#000 1px;}是一个非常不错的方法。
示例:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>导航页档</title> <style type="text/css"> table { border-collapse: collapse; border: none; width: 200px; } td { border: solid #000 1px; } </style> </head> <body> <table> <tr> <td> 军事 </td> <td> 历史 </td> <td> 新闻 </td> </tr> <tr> <td> 军事 </td> <td> 历史 </td> <td> 新闻 </td> </tr> </table> </body> </html>
标签:meta har .com com tle type html 示例 pre
原文地址:http://www.cnblogs.com/henuyuxiang/p/6146135.html