React-Bootstrap标签和属性

时间:2019-03-30 10:53:34

标签: javascript reactjs

我一直在从事Bootstrap主页项目,总的来说,我是Bootstrap的新手,在样板代码上,我发现了一个具有反向属性的标签,而不是class和其他一些,我已经阅读了文档,在任何地方都找不到这种逆固定属性?

 <Navbar inverse fixedTop fluid collapseOnSelect>

2 个答案:

答案 0 :(得分:0)

反斜杠不可用,您可以检查

 <Navbar color="light" light expand="md">

您可以在这里https://reactstrap.github.io/components/navbar/中找到。

答案 1 :(得分:0)

inverse在版本4.0左右似乎已被弃用。在legacy versions of the docsold questions here中。 current NavBar docs中没有提及它。

fixed-top具有new syntax

<nav class="navbar fixed-top navbar-light bg-light">
  <a class="navbar-brand" href="#">Fixed top</a>
</nav>