在此之前的HTML和CSS

HTML:

<!DOCTYPE html>
<!-- Language And Resource Imports -->
<html lang="en">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Doppio+One|Rajdhani|Quicksand|Raleway&effect=shadow-mutliple|outline">
<link rel="stylesheet" href="resources/css/style.css">
<script src="resources/js/script.js"></script>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>JF Web | Page 1</title>
</head>

<header>
  <div id="titlebar">
    <div id="logotext">
      <h1>JF Web &copy;</h1>
    </div>
    <nav>
      <ul id="navbar" class="cf">
        <li><a href="Index.html" class="active">&nbsp;&nbsp;Page 1&nbsp;&nbsp;</a></li>
        <li><a href="">&nbsp;&nbsp;Page 2&nbsp;&nbsp;</a></li>
        <li><a href="">&nbsp;&nbsp;Page 3&nbsp;&nbsp;</a></li>
      </ul>
    </nav>
  </div>
</header>
<body onload="mainClock()">
<span id="clock"></span>


</body>
</html>


CSS:

#logotext {
  font-family: 'Doppio one';
  font-size: 25px;
  margin-left: 20px;
  float: left;
  width: 45%;
  position: relative;
  top: 25.5px;
}

.cf {
  clear: both;
}

#navbar {
    list-style-type: none;
    float: right;

}

#navbar a {
  text-decoration: none;
  color: white;

}

#navbar a:hover {
  color: rgb(204, 153, 0);
  text-decoration: underline;

}

#navbar li {
  display: inline;
}

#clock {
  font-family: Rajdhani;
  font-size: 30px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 5px;
  margin-right: 10px;
}



#titlebar {
  width: 80%;
  margin: 0;
  padding: 0;
  background-color: #414a4c;
  overflow: hidden;
}


因此,如您所见,导航栏使用内联无序列表,因此在锚文本之间使用空格,在锚文本的任一侧使用了两个nbsp实体,但是当悬停状态处于活动状态并且应用了下划线时,它会在也是
NBSP Underline

任何帮助将不胜感激谢谢

最佳答案

您可以删除&nbsp;,并在padding标记上替换为CSS <a>

#navbar a {
  padding: 0 .5em;
}




#logotext {
  font-family: 'Doppio one';
  font-size: 25px;
  margin-left: 20px;
  float: left;
  width: 45%;
  position: relative;
  top: 25.5px;
}

.cf {
  clear: both;
}

#navbar {
    list-style-type: none;
    float: right;

}

#navbar a {
  text-decoration: none;
  color: white;
  padding: 0 .5em; /* Padding can replace spaces*/

}

#navbar a:hover {
  color: rgb(204, 153, 0);
  text-decoration: underline;

}

#navbar li {
  display: inline;
}

#clock {
  font-family: Rajdhani;
  font-size: 30px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 5px;
  margin-right: 10px;
}



#titlebar {
  width: 80%;
  margin: 0;
  padding: 0;
  background-color: #414a4c;
  overflow: hidden;
}

<!DOCTYPE html>
<!-- Language And Resource Imports -->
<html lang="en">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Doppio+One|Rajdhani|Quicksand|Raleway&effect=shadow-mutliple|outline">
<link rel="stylesheet" href="resources/css/style.css">
<script src="resources/js/script.js"></script>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>JF Web | Page 1</title>
</head>

<header>
  <div id="titlebar">
    <div id="logotext">
      <h1>JF Web &copy;</h1>
    </div>
    <nav>
      <ul id="navbar" class="cf">
        <li><a href="Index.html" class="active">Page 1</a></li>
        <li><a href="">Page 2</a></li>
        <li><a href="">Page 3</a></li>
      </ul>
    </nav>
  </div>
</header>
<body onload="mainClock()">
<span id="clock"></span>


</body>
</html>

关于html - 我需要NBSP实体在li标签之间留出空间,但是当应用悬停状态下的下划线时,它会延伸到空间所在的位置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51178777/

10-12 01:43
查看更多