How to completely remove borders from HTML table

前端 未结 6 2078
傲寒
傲寒 2020-12-04 15:06

My goal is to make an HTML page that is similar to a \"photo frame\". In other words, I want to make a blank page that is surrounded by 4 pictures.

This is my code:<

6条回答
  •  独厮守ぢ
    2020-12-04 15:27

    For me I needed to do something like this to completely remove the borders from the table and all cells. This does not require modifying the HTML at all, which was helpful in my case.

    table, tr, td {
        border: none;
    }
    

提交回复
热议问题