How to completely remove borders from HTML table

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

    In a bootstrap environment none of the top answers helped, but applying the following removed all borders:

    .noBorder {
        border:none !important;
    }
    

    Applied as:

    
    

提交回复
热议问题