私はテーブルの中にテキストを整列させようとしています。しかし、それはtdのためだけに働きますが、thのためには働きません。私はあなたの目はどこかに上書きされている疑いがあるテキストアラインメントは、のために働いていますが、<th>のために
table {
width: 100%;
border-collapse: separate;
text-align: center;
}
th,
td {
border-bottom: 1px solid #ddd;
padding: 30px;
text-align: center;
}
<table>
<tr>
<th><font size=6>Item name</font>
</th>
<th><font size=6>Brand</font>
</th>
<th><font size=6>Category</font>
</th>
<th><font size=6>Price</font>
</th>
<th><font size=6>Date of purchase</font>
</th>
</tr>
<tr>
<td><font size=4>{{ wish[4] }}</font>
</td>
<td><font size=4>{{ wish[6] }}</font>
</td>
<td><font size=4>{{ wish[5] }}</font>
</td>
<td><font size=4>{{ wish[7] }}</font>
</td>
<td><font size=4>{{ wish[3] }}</font>
</td>
</tr>
</table>
あなたのHTMLコードも置くことができます.. – vignesh
あなたは完全なコードを投稿できますか?私は試して、それはうまくいった –
私のために働くようです。 http://jsbin.com/zexopo/edit?html,css,output –