I am trying to use the viewport tag
. It is like this
<meta name = "viewport" content = " width=device-width, height = device-height, initial-scale=1, maximum-scale =1, minimum-scale =1, user-scalable=no">
I am wondering since I disabled the zooming capabilities with the help of maximum-scale and minimum-scale. Can I remove the user-scalable =no altogether? Will there be any performant issues if I keep attributes in tags which are unnecessary?
Thanks,