每日总结· 5.4

发布时间 2023-05-04 20:07:48作者: 一个小虎牙

今日学习了matlab的使用随后进行了html学习

/*表格样式*/
table {
    width: 90%;
    background: #ccc;
    margin: 10px auto;
    border-collapse: collapse;
    /*border-collapse:collapse合并内外边距
(去除表格单元格默认的2个像素内外边距*/
}
th,
td {
    height: 25px;
    line-height: 25px;
    text-align: center;
    border: 1px solid #ccc;
}
th {
    background: #eee;
    font-weight: normal;
}
tr {
    background: #fff;
}
tr:hover {
    background: #cc0;
}
td a {
    color: #06f;
    text-decoration: none;
}
td a:hover {
    color: #06f;
    text-decoration: underline;
}