gpt4 book ai didi

reactjs - 当我使用 mdbreact 组件时,没有出现样式或图标 - 页脚

转载 作者:行者123 更新时间:2023-12-03 13:26:29 24 4
gpt4 key购买 nike

我正在构建一个简单的登陆页面,并想为其制作一个页脚组件。我使用 npm 命令 npm install --save mdbreact 来安装依赖项,并从 mdb 网站复制了以下代码片段。

import React from 'react';
import { Col, Container, Row, Footer } from 'mdbreact';

export class FooterPage extends React.Component {
render() {
return (
<Footer color="stylish-color-dark" className="page-footer font-small pt-4 mt-4">
<Container className="text-left">
<Row>
<Col md="6">
<h5 className="text-uppercase mb-4 mt-3 font-weight-bold">Footer Content</h5>
<p>Here you can use rows and columns here to organize your footer content. Lorem ipsum dolor sit
amet, consectetur adipisicing elit.</p>
</Col>
<hr className="clearfix w-100 d-md-none" />
<Col md="2">
<h5 className="text-uppercase mb-4 mt-3 font-weight-bold">Links</h5>
<ul className="list-unstyled">
<li><a href="#!">Link 1</a></li>
<li><a href="#!">Link 2</a></li>
<li><a href="#!">Link 3</a></li>
<li><a href="#!">Link 4</a></li>
</ul>
</Col>
<hr className="clearfix w-100 d-md-none" />
<Col md="2">
<h5 className="text-uppercase mb-4 mt-3 font-weight-bold">Links</h5>
<ul className="list-unstyled">
<li><a href="#!">Link 1</a></li>
<li><a href="#!">Link 2</a></li>
<li><a href="#!">Link 3</a></li>
<li><a href="#!">Link 4</a></li>
</ul>
</Col>
<hr className="clearfix w-100 d-md-none" />
<Col md="2">
<h5 className="text-uppercase mb-4 mt-3 font-weight-bold">Links</h5>
<ul className="list-unstyled">
<li><a href="#!">Link 1</a></li>
<li><a href="#!">Link 2</a></li>
<li><a href="#!">Link 3</a></li>
<li><a href="#!">Link 4</a></li>
</ul>
</Col>
</Row>
</Container>
<hr />
<div className="text-center py-3">
<ul className="list-unstyled list-inline mb-0">
<li className="list-inline-item">
<h5 className="mb-1">Register for free</h5>
</li>
<li className="list-inline-item"><a href="#" className="btn btn-danger btn-rounded">Sign up!</a></li>
</ul>
</div>
<hr />
<div className="text-center">
<ul className="list-unstyled list-inline">
<li className="list-inline-item"><a className="btn-floating btn-sm btn-fb mx-1"><i className="fa fa-facebook"> </i></a></li>
<li className="list-inline-item"><a className="btn-floating btn-sm btn-tw mx-1"><i className="fa fa-twitter"> </i></a></li>
<li className="list-inline-item"><a className="btn-floating btn-sm btn-gplus mx-1"><i className="fa fa-google-plus"> </i></a></li>
<li className="list-inline-item"><a className="btn-floating btn-sm btn-li mx-1"><i className="fa fa-linkedin"> </i></a></li>
<li className="list-inline-item"><a className="btn-floating btn-sm btn-dribbble mx-1"><i className="fa fa-dribbble"> </i></a></li>
</ul>
</div>
<div className="footer-copyright text-center">
<Container fluid>
&copy; {(new Date().getFullYear())} Copyright: <a href="https://www.MDBootstrap.com"> MDBootstrap.com </a>
</Container>
</div>
</Footer>
);
}
}

export default FooterPage;

现在的问题是该组件出现在主页上,但没有样式或图标。它应该是什么样子: Footer Expectation

实际看起来如何: Footer Reality

有人可以帮助我如何使样式和图标正常工作吗?

最佳答案

您需要添加 ---- import 'mdbreact/dist/css/mdb.css' ----

enter image description here

enter image description here

由于我使用的是旧图标集,因此图标可能存在一些偏差。

此外,要使图标正常工作,您需要使用以下命令安装 fontawesome 包 npm install --save react-fontawesome然后使用以下行包含它的 CSS import 'font-awesome/css/font-awesome.min.css';

关于reactjs - 当我使用 mdbreact 组件时,没有出现样式或图标 - 页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50718394/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com