table content and table elements". The tr tag defines rows in an HTML table. A tr element contains one or more th or td elements."/> table content and table elements". The tr tag defines rows in an HTML table. A tr element contains one or more th or td elements.">
Home > Article > Web Front-end > What does tr mean in css
在css中,tr的意思是表格中的行,语法格式为“
表格内容及表格元素 ”。tr标签定义HTML表格中的行,一个tr元素包含一个或多个th或td元素。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
tr 元素包含一个或多个 th 或 td 元素。
实例:
<html> <body> <table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> </body> </html>
效果
推荐学习:css视频教程
The above is the detailed content of What does tr mean in css. For more information, please follow other related articles on the PHP Chinese website!