如何讓表格有框線

 table, th, td {

    border: 1px solid #ccc;

    border-collapse: collapse;

}



——————-


<style>

    /* 這是新增的表格樣式 */

    table {

        width: 100%;

        margin-top: 20px;

        border-collapse: collapse;

    }

    th, td {

        border: 1px solid #ccc;

        padding: 10px;

        text-align: center;

    }

    th {

        background-color: #eee;

    }

</style>

留言