gpt4 book ai didi

html - 使用 Aptana Studio 3 将 CSS 链接到 HTML

转载 作者:行者123 更新时间:2023-11-28 07:19:58 24 4
gpt4 key购买 nike

我想将我的 css 代码与我网站的 html 代码链接起来。我正在使用 Aptana Studio 3。它似乎可以工作,但是当我在 Aptana 中预览它时,我的 css 样式没有显示出来。这是我的代码:

<!DOCTYPE HTML>
<title>jampens</title>
<head>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div align="left">
<a href="about.htm">About</a> &nbsp;
<a href="contact.htm">Contact</a> &nbsp;
<a href="products.htm">Products</a>
</div>
<div align="center">
<h1>JAM Pens</h1>
<div>
<p>Welcome to the official website of JAM Pens.</p>
</div>
</div>
</div>
</body>
</html>

还有我的CSS代码:

.body {
font-family: cursive;
}

当我预览它时,css 样式没有显示出来。我所有的文件都保存在同一个文件夹中,所以我不知道为什么这不起作用。在此先感谢您的帮助。

最佳答案

.body指的是一个带有body类的容器,如果要应用于body标签去掉那个点

body { font-family: cursive; }

.some its applied to class="some"
#some its applied to id="some"
some its applied to <some></some>

关于html - 使用 Aptana Studio 3 将 CSS 链接到 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32131092/

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