when I was learning layout viewport, I learned that scale scaling does not affect the size of the layout viewport. The size of the layout viewport is the same when zooming, but when using scale to solve the 1px problem, it is as follows:
<meta name="viewport" content="inital-scale=0.5, width=device-width">
both the width of the layout viewport and the vistual viewport I got are doubled! So doesn"t it mean that scale will affect the size of layout viewport? Does the width of layout viewport have anything to do with the width of vistual viewport?