如何在 reactstrap 中制作页脚组件?
How do I make a footer component in reactstrap?
我正在使用 reactstrap 构建这样的粘性页脚组件 example 但我找不到专用的页脚组件。
唯一的其他方法就是使用 html:
<footer class="footer">
<div class="container">
<span class="text-muted">Place sticky footer content here.</span>
</div>
</footer>
问题是上面没有选我的.footer
class。那是一个不同的问题,但现在我只想知道是否有更好的方法。
页脚仅在 Cards
中定义
- 在 React 中我们不使用
class
而是 className
属性。通常它会抛出一个错误。
- 您的示例使用了 Bootstrap 提供的额外 CSS
sticky-footer-navbar.css
文件,默认情况下编译代码不提供该文件。在 Github Sticky Footer Navbar CSS Source Code 上获得他们的源代码后,您必须自己包含它
您不需要分离 Footer 组件。只需添加 div 就像您在上面的代码中所做的那样。
p.s。 class
= className
在 react.js.
我正在使用 reactstrap 构建这样的粘性页脚组件 example 但我找不到专用的页脚组件。
唯一的其他方法就是使用 html:
<footer class="footer">
<div class="container">
<span class="text-muted">Place sticky footer content here.</span>
</div>
</footer>
问题是上面没有选我的.footer
class。那是一个不同的问题,但现在我只想知道是否有更好的方法。
页脚仅在 Cards
中定义- 在 React 中我们不使用
class
而是className
属性。通常它会抛出一个错误。 - 您的示例使用了 Bootstrap 提供的额外 CSS
sticky-footer-navbar.css
文件,默认情况下编译代码不提供该文件。在 Github Sticky Footer Navbar CSS Source Code 上获得他们的源代码后,您必须自己包含它
您不需要分离 Footer 组件。只需添加 div 就像您在上面的代码中所做的那样。
p.s。 class
= className
在 react.js.