HTML / CSS table with GRIDLINES

左心房为你撑大大i 提交于 2019-12-02 21:45:32

Via css. Put this inside the <head> tag.

<style type="text/css" media="screen">

table{
border-collapse:collapse;
border:1px solid #FF0000;
}

table td{
border:1px solid #FF0000;
}
</style>
<table border="1"></table>

should do the trick.

For internal gridlines, use the tag: td For external gridlines, use the tag: table

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!