然而,当我把我的css代码移回html文件的主体(不使用href="”)时,像填充和颜色这样的编辑会应用到前端,这是我的css代码。
<style>
.subscribe-button {
background-color: rgb(204, 0, 0);
color:white;
border: none;
padding-top: 10px;
padding-left: 16px;
padding-right: 16px;
padding-bottom: 10px;
border-radius: 2px;
cursor: pointer;
margin-right: 5px;
margin-left: 10px;
transition: opacity 0.15s;
vertical-align: top;}
</style>
2条答案
按热度按时间nmpmafwu1#
看起来您已经将带有html标记的css文件手动复制到了.css文件中。请确保.css文件中的唯一代码是标记之间的代码。
Style.css文件内容应如下所示。
html文件内容应如下所示
evrscar22#
看起来你误解了.css文件的工作原理。你不应该在它里面有任何HTML标记(例如
<div>
)。下面是它应该看起来的样子:https://www.webucator.com/article/how-to-create-a-css-external-style-sheet/只使用选择器.div{}
和其中的代码.div{color:red;}
。