Перейти к содержимому


onmyoji

Регистрация: 12 нояб. 2013
Offline Активность: 19 авг. 2014 11:34
-----

#108791 Помогите С Установкой Css3 Вкладок (Табов)

Отправлено Vaccina на 06 Декабрь 2013 - 05:49

Найдите в файле стилей style2.css

.content div {
  opacity: 0;
  padding: 10px 40px;
  position: absolute;
  top: 0;
  transition: all 0.3s linear 0s;
  z-index: 1;
}

и замените на

.content > div {
  opacity: 0;
  padding: 10px 40px;
  position: absolute;
  top: 0;
  transition: all 0.3s linear 0s;
  z-index: 1;
}