Показать сообщение отдельно
  #2 (permalink)  
Старый 29.11.2014, 23:18
Профессор
Посмотреть профиль Найти все сообщения от krutoy
 
Регистрация: 09.11.2014
Сообщений: 610

Так оно и так должно восстанавливаться
<html>
<head>
<meta charset="windows-1251" />
<style>
.first{
 background: blue;
 color: white;
 position: absolute;
 top: 10px;
 width: 200px;
 height: 200px
}
.second{
 opacity: 1;
 background: red;
 color: white;
 position: absolute;
 top: 10px;
 width: 200px;
 height: 200px
}
a:hover{opacity: 0.1}
</style>
</head>
<body>

<a id="first" class="first">FIRST</a>
<a id="second" class="second"></a>


<script>

</script>
</body>
</html>
Ответить с цитированием