Text-decoration: none; отображает полосу, код написан вроде как верно, что делать?

0

text-decoration: none; -отображает полосу . код написан вроде как верно . Даже если навожу курсор , полоса не пропадает .

Мой код html :

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="descriprion" content="Киномонстер - это протал о кино" />
<meta name="keywords" content="фильмы, фильмы онлайн, HD" />
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>

<div class="main">

<div class="header">
<div class="logo">
<div class="logo_text">
<h1><a href="/">КиноМонстер</a></h1>
<h2>Кино - наша страсть!</h2>
</div>
</div>
</div>


</div>

</body>
</html>

мой код css:

.header {
background-color: darkslateblue;
height: 177px;
font-size: 0.8em;
margin-left: 0px;
margin-right: 0px;
min-width: 900px;
}

.main, .logo, .menubar, .site_content, .footer {
margin-left: auto;
margin-right: auto;
}

.logo {
width: 880px;
padding-bottom: 40px;
}

.logo h1, .logo h2 {
font: normal 300% "century gothic", arial sans-serif;
margin: 0 0 0 9px
}

.logo_text h1, .logo_text h1 a, .logo_text h1 a:hover {
padding: 22px 0 0 0;
color: #fff;
letter-spacing: 0.1em
text-decoration: none;
}

Еще нюанс , все коды выделяются цветом , кроме :  .logo_text h1 a:hover (слово hover не выделяется)

и text-decoration: none; (слово decoration не выделяется) Что делать ?

html
css

1 ответов

0

Точки с запятой не стоит после letter-spacing стиля, это ломает верстку:

.logo_text h1, .logo_text h1 a, .logo_text h1 a:hover {
padding: 22px 0 0 0;
color: #fff;
letter-spacing: 0.1em
text-decoration: none;
}

Вот такие стили должны быть:

* {
  margin: 0;
  padding: 0;
}

.header {
  background-color: darkslateblue;
  height: 177px;
  font-size: 0.8em;
  margin-left: 0px;
  margin-right: 0px;
  min-width: 900px;
}

.main, .logo, .menubar, .site_content, .footer {
  margin-left: auto;
  margin-right: auto;
}

.logo {
  width: 880px;
  padding-bottom: 40px;
}

.logo h1, .logo h2 {
  font: normal 300% 'century gothic', arial, sans-serif;
  margin: 0 0 0 9px;
}

.logo_text h1, .logo_text h1 a, .logo_text h1 a:hover {
  padding: 22px 0 0 0;
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.logo_text h2 {
  font-size: 0.9em;
  padding: 4px 0 0 0;
  color: #999;
}
Sign up or Log in to write an answer