Thanks for the article, we will definitely discuss it with my colleagues!
As an enhancement I would add bits about working with layout. Sizes, positioning, modern approaches (flex, for example). Often times I see people defining absolute heights and widths:
.my-div {
width: 145px;
height: 120px;
}
But from where do this magical numbers coming from? Would they hold up on a 4K display? What happens if an other <div>'s size is changed? You end up fixing one and seeing two others break.
(I would really appreciate if anyone has a link to how you should approach and architect placement, sizes, proportions in a large UI).
Thanks for the article, we will definitely discuss it with my colleagues!
As an enhancement I would add bits about working with layout. Sizes, positioning, modern approaches (flex, for example). Often times I see people defining absolute heights and widths:
But from where do this magical numbers coming from? Would they hold up on a 4K display? What happens if an other
<div>'s size is changed? You end up fixing one and seeing two others break.(I would really appreciate if anyone has a link to how you should approach and architect placement, sizes, proportions in a large UI).