Home > Article > Web Front-end > How to realize table solid line in css
Use to set the table solid line in css:
The code is as follows:
table{ border-collapse:collapse; /*表示将单元格中各小格之间的空隙进行合并*/ border:1px #00F solid; /*定义边框样式*/ }
Example:
<!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> <title>无标题页</title> <style> table { border-collapse: collapse; } table td { border:1px solid #fff000; } </style> </head> <body> <table cellpadding="0"> <tr> <td>First</td> <td>Second</td> <td>Three</td> </tr> <tr> <td>第一</td> <td>第二</td> <td>第三</td> </tr> </table> </body> </html>
The results are as follows:
For more CSS-related technical articles, please visit the CSS Tutorial column to learn!
The above is the detailed content of How to realize table solid line in css. For more information, please follow other related articles on the PHP Chinese website!