这是一个功能完善的页面,带有指向工作示例的链接。我添加了一些 XML 工作,但该链接将不起作用。我不知道为什么。如果这是显而易见的事情,我很抱歉。谢谢!
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title></title>
</head>
<body>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<center>
<a href="C++/index.html"><div class="friend"><p>C++</p></div></a>
<a href="SQL/index.html"><div class="family"><p>SQL</p></div></a>
<a href="OS/index.html"><div class="enemy"><p>OS</p></div></a>
<a href-"XML/index.html"><div class="friend"><p>XML</p></div></a>
<a href="Miscellaneous/index.html"><div class="family"><p>Miscellaneous</p></div></a>
<a href="http://github.com/"><div class="enemy"><p>GitHub</p></div></a>
</center>
</body>
</html>
这是样式表:
div {
position: relative;
display: inline-block;
height: 100px;
width: 100px;
border-radius: 100%;
border: 2px solid black;
margin-left: 5px;
margin-top: 5px;
text-align: center;
}
div p {
position: relative;
margin-top: 40px;
font-size: 16px;
}
.friend {
border: 4px solid green;
}
.family {
border: 4px solid blue;
}
.enemy {
border: 4px solid red;
}
a:hover
{
background-color:yellow;
}