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

Why does this work?

And this doesn\'t?

<
7条回答

This only adds a border around the table.

If you want same border through CSS then add this rule:

table tr td { border: 5px solid black; }

and one thing for HTML table to avoid spaces

提交回复
热议问题