使用React

时间:2018-08-29 09:36:24

标签: css reactjs html-table

我正在尝试右对齐表格单元格的内容,类似于所解释的here

<td style="text-align:right">

但是,似乎React已经决定不要那样使用style关键字:

Line XX:  Style prop value must be an object   react/style-prop-object

An answer on this site表示应改用“样式”:

<td styles="text-align:right">

当然,React认为这很好,但是我的网络浏览器并不知道我说styles时实际上是style。如何正确对齐表格中的内容?

2 个答案:

答案 0 :(得分:2)

正确用法是

<td style={{ textAlign: 'right' }}>

Reference

答案 1 :(得分:0)

在表格标签中,


<table class="text-center"> </table>