Most big development sites recommend using
<meta name="viewport" content="width=device-width,initial-scale=1"/>
And, according to a Mozilla doc on meta viewport tag, initial-scale=1, where 1 is the default value which means even if you don't specify the value, browser will itself use the default value. So, do I really need to add this, 'initial-scale=1' in my meta viewport tag or it is unnecessary?
For my responsive site project, I am wanting to use this instead
<meta name="viewport" content="width=device-width"/>
Is it right? Or do I must specify yet mention initial-scale=1 (default value) like most big coding information sites say? I am kinda confused.
I had to illogically use initial-scale=1 and I don't think I need to specify a default value unless I am changing it as a design's demand.