How do I set border width with CSS?
前端 未结 7 1581
广开言路
广开言路 2020-12-05 22:15

Why does this work?

And this doesn\'t?

<
7条回答
  •  甜味超标
    2020-12-05 22:56

    Doing borders on tables with css is a bit more complicated (but not as much, see this jsfiddle as example):

    table {
      border-collapse: collapse;
      border: 1px solid black;
    }
    
    table td {
      border: 1px solid black;
    }
test test

提交回复
热议问题