我們可以使用CSS來定義表格的樣式。以下屬性用於為f5d188ed2c074f8b944552db028f98a1及其元素定義樣式:
CSS的border屬性用於定義邊框寬度、邊框樣式和邊框顏色。
此屬性用於指定f5d188ed2c074f8b944552db028f98a1元素是否應具有共享或獨立的邊框。
caption-side屬性用於垂直定位表格標題框。
此屬性用於指定表格的空白儲存格的顯示方式。
以下範例示範了表格的樣式:
即時示範
<!DOCTYPE html> <html> <head> <style> body { font-family: 'Bookman Old Style', serif; } th { letter-spacing: 1.9px; } #one { border-right: thick solid blue; } td { text-align: center; } </style> </head> <body> <h2>Employee List</h2> <div> <table> <tr> <th id="one">Employee</th> <th>Department</th> </tr> <tr> <td>John </td> <td>Marketing</td> </tr> <tr> <td>Brad</td> <td>Finance</td> </tr> <tr> <td>Tim </td> <td>IT</td> </tr> <tr> <td>Steve</td> <td>Operations</td> </tr> </table> </div> </body> </html>
This gives the following output −
Live Demo
<!DOCTYPE html> <html> <head> <style> table { float: left; empty-cells: hide; box-shadow: inset 0 0 4px orange; } tr { box-shadow: inset 0 0 10px greenyellow; } td { font-style: italic; box-shadow: inset 0 0 8px red; } table,td { margin: 6px; padding: 6px; border: 1px solid black; } table </style> </head> <body> <table> <caption>Demo Table</caption> <tr> <th>Head 1</th> <th>Head 2</th> <th>Head 3</th> </tr> <tr> <td>demo</td> <td></td> </tr> <tr> <td></td> <td></td> <td>demo</td> </tr> <tr> <td></td> <td>demo</td> <td></td> </tr> </table> </body> </html>
#This gives the following output −
以上是使用 CSS 設定表格樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!