Мой переход для моей веб-страницы не работает для Chrome. Работает в Microsoft Edge. Есть идеи? - PullRequest
0 голосов
/ 19 октября 2019

Я пытаюсь создать страницу контактов для своего веб-сайта, который я создаю, и свойство перехода не работает в Chrome. Спасибо за любые предложения.

Ссылка на мой сайт (в частности, страницу контактов): https://voltatsa.000webhostapp.com/

HTML:

<body>
    <div class="contact-title">
        <br>
        <h2>Volta Support</h2>
    </div>

    <div class = "contact-form">
        <form id="contact-form" method="post" action="contact-form-handler.php">
            <input name="name" type="text" class="form-control" placeholder="Your Name" required><br>
            <input name="email" type="email" class="form-control" placeholder="Your Email" required><br>

            <textarea name="message" class="form-control" placeholder="Message" rows="4" required></textarea><br>

            <input type="submit" class="form-control submit" value="SEND MESSAGE">
        </form>
    </div>
</body>

CSS:

form {
  margin-top: 50px;
  -webkit-transition: all 4s ease-out;
  -moz-transition: all 4s ease-out;
  -o-transition: all 4s ease-out;
  transition: all 4s ease-out;
}
...