Is it possible to set the alignment of the message attribute "required" to the left in the chrome?

    1 answer 1

    If I understand you correctly:

    <form> <input required> <button>GO</button> </form> 

    CSS:

     input{float:left; box-shadow:none;} 

    You can absolutely positioned on the left edge:

     input{position:absolute; left:0; box-shadow:none;} 

    Or you can just stylize just input with required and align it only along the left edge:

     input:required { float:left; } 

    Still, as an option, you can add input to the div and position the div. Yes, you ask the question more correctly (in more detail). It is possible, as a variant of javascript, to search for a field with required and position it.