gpt4 book ai didi

html - 鼠标悬停链接下的粗线

转载 作者:太空宇宙 更新时间:2023-11-04 05:50:02 24 4
gpt4 key购买 nike

我必须这样做,当我将鼠标移到底部导航栏中的文字上时,必须出现一条粗线,如这张照片所示:

enter image description here

现在我设法做了其他所有事情,链接到另一个页面的工作链接,我只是错过了紫色线。在这里,我留下了我设法做的事情以及它是如何发生的截图:

enter image description here

这里我也留下了我所做的HTML代码:

#font{
font-family: courier new;
font-size: 45px;
color: #8B0000
}

#nero{
width:2000px;
height: 600px;
background-color: black;
}

#bianco{
margin-left: 527px;
width:800px;
height: 300px;
background-color: #F5F5DC;
border-style:solid;
border-color:white;
border-width:5px;
font-family: Georgia;
color: DarkRed;
font-style: italic;
}

#img{
margin-left:7px;
}

p{
font-size:18px;
}

#bottone{
margin-top:10px;
font-family: Verdana;
}

#bottone1{
margin-top:10px;
margin-left:535px;
font-family: Verdana;
}

#nero button{
background-color: black;
border: none;
color:white;
}

#tabella{
margin-left: 592px;
color:white;
text-align:center;
}

table td{
padding: 0px 40px 0px 10px;
}

a:link, a:visited {
text-decoration: none;
color: white;
}
<html>
<head>
<link href="css.css" rel="stylesheet" type="text/css" media="all"/>
</head>
<body background="immagini/wood.jpg">
<br><br>
<b>
<font id="font">
<center>
Learn web development
</center>
</font>
</b>
<br><br>
<div id="bianco">
<br>
<img src="immagini/enjoy.png" align=left id="img">
<p align="justify">Al contrario di quanto si pensi, Lorem Ipsum non è semplicemente una sequenza casuale di caratteri. Risale ad un classico della letteratura latina del 45AC, cosa che lo rende vecchio di 200 anni. Richard McClintock, professore di latino al Hampden-Sydney Collage in Virginia, ha ricercato una delle più oscure parole latine, consectetur, da un passaggio del Lorem Ipsum e ha scoperto tra i vari testi in cui è citata, la fonte da cui è tratto il testo, le sezioni 1.10.32 and 1.10.33 del "de Finibus Bonorum et Malorum" di Cicerone. Questo testo è un trattato su teorie di etic, molto popolare nel Rinascimento. La prima riga di Lorem Ipsum, "Lorem ipsum dolor sit amet..", è tratta da un passaggio della sezione 1.10.32</p>
</div>
<div id="nero">

<button id="bottone1"><a>Home</a></button>&emsp&nbsp&nbsp
<button id="bottone"><a href="design.html">Design</a></button>&emsp&nbsp&nbsp
<button id="bottone"><a>Tools</a></button>&emsp&nbsp&nbsp
<button id="bottone"><a>How-to</a></button>&emsp&nbsp&nbsp
<button id="bottone"><a href="take.html">Take a tour</a></button>&emsp&nbsp&nbsp
<button id="bottone"><a>commercial</a></button>&emsp&nbsp&nbsp
<button id="bottone"><a>Contacts</a></button>
<br><br><br><br>
<table id="tabella">
<tr>
<center>
<td><img src="immagini/direct.png" width="180px" height="85px"></td>
<td><img src="immagini/social.png" width="90px" height="85px"></td>
<td><img src="immagini/lifetime.png" width="110px" height="65px"></td>

</tr>
<tr>
<td><b>Direct mentorship</b></td>
<td><b>Social Learning</b></td>
<td><b>Lifetime Access</b></td>
</tr>
<tr>
<td>Experienced mentors will be with <br> you every step</td>
<td>Learn in an intimate group of <br> passionate peers</td>
<td>Become a part of the growing alumni <br> network</td>
</center>
</tr>
</table>

</div>
</body>
</html>

最佳答案

anwser 将在悬停时添加 border-bottom,这是我在 #nero button:hover a 上完成的,为了让它看起来不错,我也为其添加了一个简短的transition

#font{
font-family: courier new;
font-size: 45px;
color: #8B0000
}

#nero{
width:2000px;
height: 600px;
background-color: black;
}

#bianco{
margin-left: 527px;
width:800px;
height: 300px;
background-color: #F5F5DC;
border-style:solid;
border-color:white;
border-width:5px;
font-family: Georgia;
color: DarkRed;
font-style: italic;
}

#img{
margin-left:7px;
}

p{
font-size:18px;
}

.bottone{
margin-top:10px;
font-family: Verdana;
}

.bottone1{
margin-top:10px;
margin-left:535px;
font-family: Verdana;
}

#nero button{
background-color: black;
border: none;
color:white;
}
#nero button:hover a{
border-bottom: 3px solid purple;
transition: 0.3s all ease;
}

#tabella{
margin-left: 592px;
color:white;
text-align:center;
}

table td{
padding: 0px 40px 0px 10px;
}

a:link, a:visited {
text-decoration: none;
color: white;
}
<html>
<head>
<link href="css.css" rel="stylesheet" type="text/css" media="all"/>
</head>
<body background="immagini/wood.jpg">
<br><br>
<b>
<font id="font">
<center>
Learn web development
</center>
</font>
</b>
<br><br>
<div id="bianco">
<br>
<img src="immagini/enjoy.png" align=left id="img">
<p align="justify">Al contrario di quanto si pensi, Lorem Ipsum non è semplicemente una sequenza casuale di caratteri. Risale ad un classico della letteratura latina del 45AC, cosa che lo rende vecchio di 200 anni. Richard McClintock, professore di latino al Hampden-Sydney Collage in Virginia, ha ricercato una delle più oscure parole latine, consectetur, da un passaggio del Lorem Ipsum e ha scoperto tra i vari testi in cui è citata, la fonte da cui è tratto il testo, le sezioni 1.10.32 and 1.10.33 del "de Finibus Bonorum et Malorum" di Cicerone. Questo testo è un trattato su teorie di etic, molto popolare nel Rinascimento. La prima riga di Lorem Ipsum, "Lorem ipsum dolor sit amet..", è tratta da un passaggio della sezione 1.10.32</p>
</div>
<div id="nero">

<button class="bottone1"><a>Home</a></button>&emsp&nbsp&nbsp
<button class="bottone"><a href="design.html">Design</a></button>&emsp&nbsp&nbsp
<button class="bottone"><a>Tools</a></button>&emsp&nbsp&nbsp
<button class="bottone"><a>How-to</a></button>&emsp&nbsp&nbsp
<button class="bottone"><a href="take.html">Take a tour</a></button>&emsp&nbsp&nbsp
<button class="bottone"><a>commercial</a></button>&emsp&nbsp&nbsp
<button class="bottone"><a>Contacts</a></button>
<br><br><br><br>
<table id="tabella">
<tr>
<center>
<td><img src="immagini/direct.png" width="180px" height="85px"></td>
<td><img src="immagini/social.png" width="90px" height="85px"></td>
<td><img src="immagini/lifetime.png" width="110px" height="65px"></td>

</tr>
<tr>
<td><b>Direct mentorship</b></td>
<td><b>Social Learning</b></td>
<td><b>Lifetime Access</b></td>
</tr>
<tr>
<td>Experienced mentors will be with <br> you every step</td>
<td>Learn in an intimate group of <br> passionate peers</td>
<td>Become a part of the growing alumni <br> network</td>
</center>
</tr>
</table>

</div>
</body>
</html>

关于html - 鼠标悬停链接下的粗线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58364921/

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