This is more of a "best practices" question. I'm doing some front-end web development and right now when I place elements (text, button, etc) I literally do everything by pixel, and append it to a main div element. Here's an example:
var button = document.createElement('input');
button.type = "button";
button.value = "Click Me";
button.style.position = "absolute";
button.style.top = "200px";
button.style.left = "150px";
mainDiv.appendChild(button);
...And I'm doing like every element this way, and it's starting to feel wrong (was really easy at first, but now if I want to change a layout by adding/removing elements, I have to change like 50 numbers from element positions). Also, I'm not sure if specifying exact pixel locations is good when it comes to cross-browser (and screen resolution) compatibility.
I'd much rather have a way where elements are positioned more relative to each other, so adding in one new element doesn't mean I have to reposition everything else.
Could you guys help point me in the right direction for this? Thanks a lot.