I'm curious about something. If I set my Chrome Extension popup window width as such:
html,body{
padding: 0;
margin: 14px 12px;
width: 600px;
overflow-x: hidden;
}
It looks good on my screen, but if I hardcode the width to 600 pixels, what would happen if someone runs it on an operating system with higher DPI setting? Will it look smaller? And if so, how to overcome this?
PS. Unfortunately my screen setup doesn't allow to test it.
EDIT: I just thought of something. Can I use em
s to define the size like this? width: 24em;