Не работает hover
Кароч...
Прохожу значт html/css. Дохожу до .logo_text h1 a:hover, но в sumblime text 3 цвет hover не сменился.
Это норм, баг или я где-то накосячил?
Вот css:
.header {
background-color: cornflowerblue;
height: 177px;
font-size: 0.8em;
margin-left: -8px;
margin-right: -5px;
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 {
}
А вот html:
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>name</title>
<meta name="description" content="name!">
<meta name="keywords" content="name">
<link rel="stylesheet" href="a
</head>
<body>
<div class="main">
<div class="header">
<div class="logo">
<div class="logo_text">
<h1><a href="/">name</a></h1>
<h2>name!</h2>
</div>
</div>
</div>
</div>
</body>
</html>