- 为什么底部边框不显示在这里?

时间:2017-09-27 03:19:15

标签: javascript reactjs

  

我没有看到它,我只是改变了我原来的CSS

我开始使用React时,

border-bottomborderBottom

const style = {
  borderBottom: '3px solid black'
}

return (
  // ... snip
        <li style={style} onClick={this.clickHandler2.bind(this)} id="nav_fave">
  // ... snip
)

1 个答案:

答案 0 :(得分:1)

看起来你有错字错误(而不是borderBottom你的boderBottom。)

此代码适用于我

const style = {
  borderBottom: '3px solid black',
  borderTop: '3px solid red'
};
return (
    // ... snip
    <li style={style} onClick={this.clickHandler2.bind(this)} id="nav_fave">
    // ... snip
)