The width and hight of following code change, on the change of resolution of different devices.
<div style="background-color:orange;height:125px;width:75px;">
This div has height and width applied.
</div>
Is there any way to prevent change of width and height and make it retain same width and height for all resolution.
Note: For this I have also tried with zooming ( in and out ) the html page which changes the width and height of the div.
<meta>tags:<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">