Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
The em is simply the font size. In an element with a 2in font, 1em thus means 2in. Expressing sizes, such as margins and paddings, in em means they are related to the font size, and if the user h...
Answer
#1: Initial revision
>The em is simply the font size. In an element with a 2in font, 1em thus means 2in. Expressing sizes, such as margins and paddings, in em means they are related to the font size, and if the user has a big font (e.g., on a big screen) or a small font (e.g., on a handheld device), the sizes will be in proportion. Declarations such as 'text-indent: 1.5em' and 'margin: 1em' are extremely common in CSS. ~ https://www.w3.org/Style/Examples/007/units <br/>[SO answer](https://stackoverflow.com/a/10275385/16897106) It actually changes font size depending on screen changes if there was no ems in my code then texts won't look good for bigger screens. But without ems I am using default textSize which is 16sp. I am not changing my screen that's why my text size wasn't changing either. That was the main reason of not to see any changes in layout.