Removing table lines and table space between cells in css

后端 未结 4 448
不思量自难忘°
不思量自难忘° 2020-12-17 17:21

I have this site: http://redditlist.com/dir/1026 and I\'m stuck on trying to remove spacing between cells so it will look more like this: http://redditlist.com.

4条回答
  •  庸人自扰
    2020-12-17 18:15

    Try this

    table.className td
    {
        display: inline-block;
    }
    

    or

    table.className td
    {
        display: block;
    }
    

提交回复
热议问题