HTML5 input required, scroll to input with fixed navbar on submit

前端 未结 9 2061
感情败类
感情败类 2020-12-08 09:35

When trying to submit a form with missing required fields, my browser (Chrome), displays a message mentionning there is a field missing, and if it\'s out of my screen, it sc

9条回答
  •  执笔经年
    2020-12-08 09:42

    Two solutions:

    • One: apply padding to the body -->

      body {
       padding-top:50px;
      }
      
    • Two : apply margin to the main container -->

       #content {
         margin-top:50px;
       }
      

提交回复
热议问题