CSS表格样式不起作用

这个问题在这里已经有了答案:

  • 在CSS中设置cellpadding和cellspacing? 26个答案

  • table{
         border: 1px solid #ccc;
         cellpadding: 3px;
         cellspacing: 0px;
          width: 500px;
    }
    
    td{
         text-align:center;
    }
    <!DOCTYPE html>
    <html>
    <head>
    	<title></title>
    </head>
    <body>
    <table>
    	<tr>
    		<td>
    			captain
    		</td>
    	</tr>
    </table>
    </body>
    </html>
    链接地址: http://www.djcxy.com/p/16947.html

    上一篇: CSS Table styling won't work

    下一篇: How to reduce space between two columns in html table