我用CSS设置了这个按钮,但样式似乎没有应用于按钮。链接到网站。 http://randomstufffrommybrain.neocities.org/TheRandomPage.html
HTML:
<head>
<link rel="stylesheet" href=CSSFORTherandompage.css>
</head>
<div id="Button5">
<button><a href=Newsitetestcode/Newwebsitemainpage.html>New website</a>
</button>
</div>
CSS:
#Button5 {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
答案 0 :(得分:1)
该样式未显示在按钮上,因为您在div#Button5
但未按钮上添加了样式。
在css中应用此更改
button{
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
答案 1 :(得分:0)
答案 2 :(得分:0)
<link>
标记都应放在<head>
link
标记所示。如果它在另一个文件夹中,请提供相应的路径。为了进一步调试,您可以使用一些JS:
function sheetLoaded() {
// Do something interesting; the sheet has been loaded
}
function sheetError() {
alert("An error occurred loading the stylesheet!");
}
<link rel="stylesheet" href="mystylesheet.css" onload="sheetLoaded()" onerror="sheetError()">