26
kibbles
7y

My boss still thinks that resizing his browser is equivalent to mobile testing, and his designs are desktop only and says "just have everything stack on top of each other"

below is how I feel.

* {
position: absolute;
Z-index: 1;
Top: 0;
Left:0;
}

Comments
  • 1
    Ah yes... the * selector - for when you really mean it
  • 0
    I'm relatively new to web Dev and I still have a huge amount to learn. But I use developer view(chrome F12) to get a rough idea of mobile view but still test on a real world device. Is this not the correct way
  • 4
    It is not about the size of the viewport, but rather the way many mobile Browsers behave deffierent than desktop ones. You simply cant get around without testing on a real mobile device
Add Comment