0
0

ВЕБ-разработчик 2021 урок 1.18 подскажите где ошибка? начинается где-то в section class="waiting" ? Не перемещаются блоки в ряд. Все писал как в уроке. Не могу найти и урок пересмотрел.

<!DOCTYPE html>
<html lang="ru">

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Wordpress intensiv</title>
  <link rel="stylesheet" href="css/style.css">
</head>

<body>
  <section class="promo">
    <div class="conteiner">
      <div class="logo">
        <img src="icons/logo.png" alt="logo" class="logo_img">
        <div class="logo_text">WordPress интенсив</div>
        <h1 class="title">Создать свой сайт на Wordpress</h1>
        <div class="simple">
          <h2 class="title_big">Это просто!</h2>
          <div class="line">
            <h2 class="title">Куда сложнее сделать это правильно!</h2>
            <div class="promo_text">Ежедневно в России появляется более 5 000 новых сайтов. <br>
              И только единицы из них становятся популярными и приносят ощутимую прибыль. В чем секрет? В чем формула
              успеха? Узнайте на предстоящем двухдневном <span>БЕСПЛАТНОМ</span> интенсиве!</div>
            <button class="promo_btn">Записаться на интенсив!</button>
            <div class="more">
              <div class="more_text">узнать больше об интенсиве</div>
              <img src="icons/arrow_down.png" alt="down" class="more_img">
            </div>
  </section>
  <section class="waiting">
    <div class="container">
      <h2 class="waiting_header">Что вас ждет в нашем интенсиве?</h2>
      <div class="waiting_divider"></div>
        <div class="waiting_subheader">2 бесплатных полноценных обучающих вебинара, где:</div>
        <div class="waiting_wrapper">
          <waiting_item>
            <img src="img/waiting/1.png" alt="1png" class="waiting_img">
            <div class="waiting_descr">Всего за два бесплатных вебинара мы научим вас, как создать свой сайт на
              WordPress.
            </div>
          </waiting_item>
          <waiting_item>
            <img src="img/waiting/2.png" alt="2png" class="waiting_img">
            <div class="waiting_descr">Покажем, как правильно оптимизировать сайт и сделать его привлекательным для
              поисковых систем. Только свежая, профессиональная и
              актуальная информация!</div>
          </waiting_item>
          <waiting_item>
            <img src="img/waiting/3.png" alt="3png" class="waiting_img">
            <div class="waiting_descr">Вы узнаете, что такое «хорошая индексация»,
«высокая посещаемость», «стабильный прирост посетителей», «ТОП по запросам» и, что намного важнее, как добиться всех этих показателей!</div>
          </waiting_item>
  </section>
</body>

</html> 


------------------------------------------------

{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .conteiner {
        width: 1144px;
        margin: 0 auto;
    }

    .logo .logo_img {
        display: block;
        margin: auto;
    }

    .logo .logo_text {
        font-family: Roboto;
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase;
        color: #ffffff;
        text-align: center;
        margin-top: 14px;
    }

    .promo {
        height: 800px;
        background: url('../img/bg/main_bg.jpg') center center/cover no-repeat;
        padding: 39px 0 62px 0;
    }

    h1 {
     margin-top: 53px;
    }

    h2.title {
        margin-top: 30px;
        
    }

    .title {
        font-family: Roboto;
        font-size: 41px;
        font-weight: 900;
        text-transform: uppercase;
        color: #f9bf3b;
        text-align: center;
        margin-top: 30px;
    }

   .simple .title_big {
        font-family: Roboto;
        font-size: 80px;
        font-weight: 900;
        text-transform: uppercase;
        color: #ffffff;
        text-align: center;
        margin-top: 21px;
    }

    .promo .promo_text {
        padding: 0 13px;
        margin-top: 23px;
        font-family: Roboto;
        font-size: 21px;
        font-weight: 300;
        color: #ffffff;
        text-align: center;
    }

    .promo .promo_text span {
        font-weight: 700;
        color: #f9bf3b;
    }

    .promo .promo_btn {
        display: block;
        margin: 0 auto;
        margin-top: 69px;
        width: 321px;
        height: 80px;
        background-image: linear-gradient(0.0deg, #2798b9 0%, #3ab6da 100%);
        border: 4px solid rgba(0,0,0,0.22);
        box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.17);
        box-shadow: -1px -1px 0px 0px rgba(0,0,0,0.21);
        font-family: RobotoCondensed;
        font-size: 21px;
        font-weight: 400;
        text-transform: uppercase;
        color: #ffffff;
        cursor: pointer;
        outline: none;
    }

    .more {
        margin-top: 73px;
    }

    .more .more_text {
        font-family: Roboto;
        font-size: 15px;
       text-align: center;
        font-weight: 400;
        text-transform: uppercase;
        color: #ffffff;
    }

    .more .more_img {
        display: block;
        margin: 0 auto;
        margin-top: 13px;
    }

    .waiting {
        height: 604px;
        background-color: #efefef;
        padding: 85px 0 75px 0;
    }

    .waiting .waiting_header {
        font-family: Roboto;
        font-size: 30px;
        font-weight: 400;
        text-transform: uppercase;
        color: #252525;
        text-align: center;
    }

    .waiting .waiting_divider {
        width: 217px;
        height: 4px;
        background-color: #f9bf3b;
        margin: 0 auto;
        margin-top: 18px;
    }

    .waiting .waiting_subheader {
        margin-top: 17px;
        font-family: Roboto;
        font-size: 23px;
        font-weight: 400;
        color: #4a4a4a;
        text-align: center;
    }

     .waiting .waiting_wrapper {
        margin-top: 45px;
    }

    .waiting .waiting_wrapper .waiting_item {
        display: inline-block;
        vertical-align: top;
        width: 339px;
        text-align: center;
        margin: 0 15px;
    }
    .waiting .waiting_wrapper .waiting_item .waiting_img {
        width: 100%;
    }

    .waiting .waiting_wrapper .waiting_item .waiting_descr {
        margin-top: 33px;
        font-family: Roboto;
        font-size: 15px;
        line-height: 21px;
        font-weight: 300;
        color: #4a4a4a;
    }
    

Василий Исофатов
3 years ago






проверьте ваш код - блок div у вас не прописан для waiting_item

<div class="waiting_wrapper">

<waiting_item>

также заметил что у вас то container, то conteiner... по разному пишете

Вадим Семенов
3 years ago

Спасибо. Для waiting div прописан, здесь из-за полей не видно, у себя перепроверил поправил. Остальное все исправил. Но все еще где-то есть ошибка, и я ее пока не нашел, нету перемещения. 

Василий Исофатов
3 years ago

2 ответов