给我的物流查询页面写一个漂亮的表格CSS样式
以下是一个简单的物流查询页面表格CSS样式示例:
table {
border-collapse: collapse;
width: 100%;
max-width: 800px;
margin: 0 auto;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
font-weight: bold;
}
tr:nth-child(even) {
background-color: #f5f5f5;
}
你可以根据自己的需求做出更改和调整,以创建一个更适合你的物流查询页面表格。
原文地址: https://www.cveoy.top/t/topic/rY9 著作权归作者所有。请勿转载和采集!