【代码笔记】Web-CSS-CSS Table(表格)

it2022-05-08  13

一,效果图。

二,代码。

 

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Table表格</title> <style> table { border-collapse: collapse; width: 100%; } table, th, td { border: 1px solid green; } th { height: 50px; background-color: green; color: white; } td { text-align: right; height: 50px; vertical-align: bottom; padding: 15px; } </style> </head> <body> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>Peter</td> <td>Griffin</td> </tr> <tr> <td>Lois</td> <td>Griffin</td> </tr> </table> </body> </html>

 

参考资料:《菜鸟教程》

转载于:https://www.cnblogs.com/yang-guang-girl/p/10301912.html


最新回复(0)