gpt4 book ai didi

html - 在 REACT 中使用 CSS

转载 作者:太空宇宙 更新时间:2023-11-03 21:02:20 25 4
gpt4 key购买 nike

Folder Structure我如何在 react 中使用 css。不断抛出 ./src/index.js找不到模块:无法解析“c:\Repo\ecom-front\src”中的“./app.css”。我知道我做错了什么所以想要一些帮助。ecom-front/src/core/Menu.js

import React from "react";
import {Link, withRouter} from "react-router-dom";
import styles from "./app.css";

const Menu = () => (
<div>
<nav class="navbar">
<span class="navbar-toggle" id="js-navbar-toggle">
<i class="fas fa-bars"></i>
</span>
<a href="#" class="logo">logo</a>
<ul class="main-nav" id="js-menu">
<li>
<a href="#" class="nav-links">Home</a>
</li>
<li>
<a href="#" class="nav-links">Products</a>
</li>
<li>
<a href="#" class="nav-links">About Us</a>
</li>
<li>
<a href="#" class="nav-links">Contact Us</a>
</li>
<li>
<a href="#" class="nav-links">Blog</a>
</li>
</ul>
</nav>
</div>
);

export default withRouter(Menu);

ecom-front/public/index.html

<head>
<link rel="stylesheet" type="text/css" href="app.css">
// other code......
</head>

ecom-front/src/user/index.js

import React from 'react';
import ReactDOM from 'react-dom';
import Routes from './Routes';
import './app.css';

ecom-front/src/core/app.css

{
box-sizing: border-box;
padding: 0;
margin: 0;
}

body {
font-family: 'Josefin Sans', sans-serif;
}

.navbar {
font-size: 18px;
background-image: linear-gradient(260deg, #2376ae 0%, #c16ecf 100%);
border: 1px solid rgba(0, 0, 0, 0.2);
padding-bottom: 10px;
}

.main-nav {
list-style-type: none;
display: none;
}

.nav-links,
.logo {
text-decoration: none;
color: rgba(255, 255, 255, 0.7);
}

.main-nav li {
text-align: center;
margin: 15px auto;
}

.logo {
display: inline-block;
font-size: 22px;
margin-top: 10px;
margin-left: 20px;
}

.navbar-toggle {
position: absolute;
top: 10px;
right: 20px;
cursor: pointer;
color: rgba(255, 255, 255, 0.8);
font-size: 24px;
}

.active {
display: block;
}

@media screen and (min-width: 768px) {
.navbar {
display: flex;
justify-content: space-between;
padding-bottom: 0;
height: 70px;
align-items: center;
}

.main-nav {
display: flex;
margin-right: 30px;
flex-direction: row;
justify-content: flex-end;
}

.main-nav li {
margin: 0;
}

.nav-links {
margin-left: 40px;
}

.logo {
margin-top: 0;
}

.navbar-toggle {
display: none;
}

.logo:hover,
.nav-links:hover {
color: rgba(255, 255, 255, 1);
}
}

所以我尝试了很多不同的方法来放置外部 css 文件,因为我正在尝试使用 flexbox 或不依赖于 Bootstrap 。我不知道我是否应该安装一个 npm 包,或者我是否遗漏了一些东西,因为我只知道实现 css 的传统方法,而不是使用 REACT。

最佳答案

您导入的 css 文件不正确。

代替

从“./app.css”导入样式;

这样做

import "./app.css";

没有从 css 文件导出的样式。并在 的位置使用 className类

<div className="class">Get work done in over 1450 different categories</div> 

编辑:这是因为您在 ecom-front/src/index.js 中导入 css 的路径错误

应该是

import './core/app.css';

关于html - 在 REACT 中使用 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58709668/

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