Please tell me how you can do it so that the 24 time zone always appears in the datetime-local, or how you can replace it or at least change the style of the given input 
just not all users understand that after the time you need to enter am, pm
Please tell me how you can do it so that the 24 time zone always appears in the datetime-local, or how you can replace it or at least change the style of the given input 
just not all users understand that after the time you need to enter am, pm
The answer is simple. It's impossible. If absolutely necessary, use JS.
The fact is that such a <input type="datetime-local"/> entry means that the input uses the local time format specified in the user's system.
Here the key word is local.
For my part, I see no reason to deal with this, since if the user has input from AM PM, this means that such input is familiar to the user and he is used to it.
In any case, you can use custom JavaScript component.
Source: https://ru.stackoverflow.com/questions/756351/
All Articles