How to completely remove borders from HTML table

前端 未结 6 2105
傲寒
傲寒 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:40

    This is what resolved the problem for me:

    In your HTML tr tag, add this:

    style="border-collapse: collapse; border: none;"
    

    That removed all the borders that were showing on the table row.

提交回复
热议问题