gpt4 book ai didi

javascript - 使用外部嵌入方式在我的简单 HTML 导航条码中嵌入 CSS 时出现问题

转载 作者:行者123 更新时间:2023-11-28 14:36:16 28 4
gpt4 key购买 nike

我是编码的新手,我想知道是否可以将 css 嵌入到 HTML 中。我查了一下,他们说使用外部方式。他们说要用这个

<link rel="stylesheet" type="text/css" href="mystyle.css">

但是当我尝试时它什么也没做。我尝试查找它,但对所有不同的方式等感到困惑。这是我的代码。

<header>
<div class="container">
<h1 class="logo"></h1>

<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
@import url('https://fonts.googleapis.com/css? family=Work+Sans:400,600');
body {
margin: 0;
background: #222;
font-family: 'Work Sans', sans-serif;
font-weight: 800;
}

.container {
width: 80%;
margin: 0 auto;
}

header {
background: #55d6aa;
}

header::after {
content: '';
display: table;
clear: both;
}

.logo {
float: left;
padding: 10px 0;
}

nav {
float: right;
}

nav ul {
margin: 0;
padding: 0;
list-style: none;
}

nav li {
display: inline-block;
margin-left: 70px;
padding-top: 23px;

position: relative;
}

nav a {
color: #444;
text-decoration: none;
text-transform: uppercase;
font-size: 14px;
}

nav a:hover {
color: #000;
}

nav a::before {
content: '';
display: block;
height: 5px;
background-color: #444;

position: absolute;
top: 0;
width: 0%;

transition: all ease-in-out 250ms;
}

nav a:hover::before {
width: 100%;
}

我知道这似乎是一个愚蠢的问题,也许确实如此,但我真的可以使用一些我喜欢编码的大麻,我真的希望能够在 HTML 代码中同时使用 Javascript 和 CSS。任何帮助将不胜感激。 (我很确定哪一部分是错的,但我不知道如何格式化)

最佳答案

是的,它被称为内联样式,但您不想这样做,因为这不仅会花费更长的时间来为您的网站编写代码,而且会使您更难对您的网站进行更改 - 这就是为什么不这样做的原因工作是因为你的 css 和 html 需要是两个单独的文件。

<link rel="stylesheet" type="text/css" href="mystyle.css">

^ 这不起作用的原因是因为你的 css 与 html 在同一个文件中 html 和 css 需要像这样在两个文件中分开

(上面的 href 路径需要引用你的 css 文件所在的路径,所以如果它与你的 html 在同一目录中,它将是 href="mystyle.css"如果不是并且位于文件夹将是 href:"/folder name/mystyle.css"):

<header>
<div class="container">
<h1 class="logo"></h1>

<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>

@import url('https://fonts.googleapis.com/css? family=Work+Sans:400,600');
body {
margin: 0;
background: #222;
font-family: 'Work Sans', sans-serif;
font-weight: 800;
}

.container {
width: 80%;
margin: 0 auto;
}

header {
background: #55d6aa;
}

header::after {
content: '';
display: table;
clear: both;
}

.logo {
float: left;
padding: 10px 0;
}

nav {
float: right;
}

nav ul {
margin: 0;
padding: 0;
list-style: none;
}

nav li {
display: inline-block;
margin-left: 70px;
padding-top: 23px;

position: relative;
}

nav a {
color: #444;
text-decoration: none;
text-transform: uppercase;
font-size: 14px;
}

nav a:hover {
color: #000;
}

nav a::before {
content: '';
display: block;
height: 5px;
background-color: #444;

position: absolute;
top: 0;
width: 0%;

transition: all ease-in-out 250ms;
}

nav a:hover::before {
width: 100%;
}

其次,我不确定您是否注意到,您的代码只有一个 head 标签,通常网站需要 head、body 和 footer 才能正常运行。

看起来这个很容易修复。

<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="mystyle.css">
<title>Website Name</title>
</head>
<header>
<div class="container">
<h1 class="logo">Logo</h1>

<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>

您的链接引用需要位于页面顶部,您没有包含标题,您需要包含您在页面中使用的字符,然后您就拥有了我认为应该正常运行的代码。

关于javascript - 使用外部嵌入方式在我的简单 HTML 导航条码中嵌入 CSS 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53464509/

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