Для чего в css logo h1,  .logo_text h1, .logo_text h1 a:hover?

3

Курс html/css 28-создание стилей ссылок с (тег a)

 <div class="header">
      <div class="logo">
       <div class="logo_text">	

	      <h1> <a href="/">КиноМонстр</a></h1>
	      <h2>Kино-наша страсть!</h2>

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

    }

    .logo h1, .logo h1 {
    	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: underline;
    }
    
    .logo_text h2 {
    	font-size: 0.9em;
    	padding: 4px 0 0 0;
    	color: #999;
html
css

2 ответов

0

Попробуй убрать часть и посмотри есть ли разница.

0

перед  logo_text h1 a:hover  точку забыл(а) поставить !

Sign up or Log in to write an answer