pagecho / maupassant

A simple typecho template.
MIT License
608 stars 124 forks source link

关于表格渲染 #15

Open wen-bao opened 5 years ago

wen-bao commented 5 years ago

对于表格渲染有问题,解决方法为在style.css中添加

table {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-collapse: collapse;
}
table thead {
    background-color: #f7f7f7;
}
table th,table td {
    color: #444;
    padding: .5rem;
    border: 1px solid #e1e1e1;
}
table tr {
    transition: background-color .3s;
}
table tr:hover {
    background-color: #f8f8f8;
}