Form Validation I - HTML and CSS

Поделиться
HTML-код
  • Опубликовано: 9 янв 2025

Комментарии •

  • @haldx
    @haldx 3 года назад +1

    Password instructions are not easily accessible by screen readers. Adding aria-describedby="instructions" to input and id="instructions" to outer span improves accessibility. Great video as always.

  • @CodingNuggets
    @CodingNuggets 3 года назад +2

    This is good skill to learn for those that may not have a good grasp on forms and their properties. Keep up the great content Steve. See you soon!

  • @aymangamal9846
    @aymangamal9846 3 года назад

    i just finished this amazing Css playlist, and i wanna thank you professor for all your effort you made to make it easy and more understandable for beginners , and as always thanks for teaching :)

  • @NotPastelDreams
    @NotPastelDreams 3 года назад

    You are great Steve. your videos are crystal clear and easy to understand.

  • @AJHF1991
    @AJHF1991 Год назад

    This is very good -- nice work :)

  • @the7engine
    @the7engine 3 года назад

    Man that lockdown growth! Appreciate these videos self teaching me web development single handedly. Do you have Patreon Steve?

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  3 года назад

      No patreon but I do have the Super Thanks feature for anyone who was really helped by stuff that I have done and who really wants to donate.

  • @justepierre7330
    @justepierre7330 Год назад

    Hello and thank you for the tutorial. May I know why you use paragraph elements to couple labels and inputs ?

  • @guillermomarindavila5779
    @guillermomarindavila5779 3 года назад

    Great video

  • @bjarnieinarsson3472
    @bjarnieinarsson3472 3 года назад

    Very good video

  • @linglingzhang8583
    @linglingzhang8583 3 года назад

    i am expecting your second part.. i am stuck here with the onsubmit function now.. drving me crazy

  • @hppycjavs2805
    @hppycjavs2805 3 года назад

    Nice one. .

  • @adirbarak5256
    @adirbarak5256 3 года назад

    I think that the out-of-range one did not work becuase you typed ":out-of-range" instead of "input:out-of-range"

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  3 года назад +1

      Nope. You can use any pseudo class without including an element.
      The problem was that I was confusing maxlength and minlength with min and max. out-of-range only applies to the min and max properties.