我想渲染一個React表,它沒有邊界,但有圓角邊緣。我嘗試使用border-collapse: collapse
,它刪除了表格中列之間出現的邊框,但它也刪除了我設置的border-radius屬性。有沒有人有一個想法,如何做到這一點?帶有圓邊的邊框塌陷?
這是我如何造型的表格。注意我沒有在任何地方指定邊框,但它們仍然出現。
moduleSection {
border-radius: 4px;
background-color: #fff;
}
這裏是我如何在我的JS文件創建表:
renderRow = (item) => {
return (
<tr key={item.id}>
<td>
{item.name}
</td>
<td>
<div>
{item.status}
</div>
</td>
</tr>
);
}
render() {
const items = this.props.items;
return (
<table className={styles.moduleSection}>
<thead>
<tr>
<th>
<div>
Your Items
</div>
</th>
<th>
<div>
Item Status
</div>
</th>
</tr>
</thead>
<tbody>{items.map(this.renderRow)}</tbody>
</table>
);
}
嘗試將邊框寬度設置爲0. –
嗯,沒有運氣:( – user3802348