我正在尝试在React中为列表添加样式:
const listStyle = {
list-style-type: none, // Error
};
然后:
const Box = () => (
<ul style={listStyle}>
<li>one</li>
<li>two</li>
</ul>
);
但是我收到了意外的令牌错误。 list-style-type
不受支持吗?
即使进行内联也会出错:
<ul >
<li style={{list-style-type: "none"}}>One</li>
<li style={{color: "red"}}><Checkbox />Two</li>
</ul>
答案 0 :(得分:10)