gpt4 book ai didi

css - 链接无效 (HTML5/CSS)

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

注意:我是初学者。出于某种原因,我的工作链接根本不再工作了。我做错了什么?

这是 HTML:

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="portfoliostyles.css">
<title>Home</title>
</head>

<body>
<div class="header"><a href="home.html"><img class="hoofd" src="images/leaugeau.png" alt="logo"></a>
<ul>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>

<img class="line" src="images/line.jpg" alt="lijn" width='95%' height='2px'>

<div class=content>
<img class="image" src="images/thumbnails/watrgatrthumb.jpg" alt="watrgatr" width=400px height=400px>
<img class="image" src="images/thumbnails/typhlotrainerthumb.jpg" alt="watrgatr" width=400px height=400px>
<img class="image" src="images/thumbnails/anneketrainerthumb.jpg" alt="watrgatr" width=400px height=400px>
</div>

</body>
</html>

这是我的 CSS:

@charset "UTF-8";
/* CSS Document */

html,body
{
height: 150%;
width: 100%;
margin: 0px 0px 0px 0px;
}

.hoofd
{
float: left;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}

.header
{
height: 216px;
width: 99%;
position: fixed;
background-color: #FFFFFF;
}

.line
{
margin: 0px 0px 15px 0px;
padding-top: 216px;
position:fixed;
}

ul
{
list-style-type:none;
margin-right:5%;
padding:0;
text-align:center;
}

li
{
display:inline;
float:right;
margin-right:2%;
font-size:45px;
line-height: 280px;

}

.content
{
padding: 230px 0 0 1.5%;
}

a
{
font-family: "HelveticaNeue-light";
text-decoration: none;
color: #000000;
}


a:hover
{
font-family: "HelveticaNeue-light";
color: #E8DA62;
}

h1
{
font-family: "HelveticaNeue-thin";
font-size: 24px;
}

p
{
font-family: "HelveticaNeue-thin";


font-size: 12px;
}

编辑:哦,澄清一下:我的页面确实位于根文件夹中,因此不再需要文件夹链接。

但是已经解决了,谢谢!不过,必须为固定电话解决问题。但它会成功的。

最佳答案

CSS 代码的问题是您在某些 上使用了fixed 位置。

如果从这两个类下面删除 position: fixed; 会更好。

为了更好地理解,请查看 Demo .

.header
{
height: 216px;
width: 99%;
position: fixed; /*Remove this line; so anchor tag could work*/
background-color: #FFFFFF;
}

.line
{
margin: 0px 0px 15px 0px;
padding-top: 216px;
position:fixed;/*Remove this line; so anchor tag could work*/

}

关于css - 链接无效 (HTML5/CSS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22490790/

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