My main focus is JavaScript specialising in frontend UI with React. I like to explore different frameworks and technologies in my spare time. Learning languages (programming and real life) is a blast.
Location
London
Education
Bachelor of Design Innovation in Media Design, Victoria University of Wellington
Fonts set with rem are easier to control than em, and if you use that then em becomes a really handy method of specifying space around those elements. Iβve been experimenting with variations on font-size: calc(1rem + 0.3vw); as a way of setting font sizes that donβt need media queries.
Then there are things like trying to use max-width instead of width etc. Really depends on the context. π
My main focus is JavaScript specialising in frontend UI with React. I like to explore different frameworks and technologies in my spare time. Learning languages (programming and real life) is a blast.
Location
London
Education
Bachelor of Design Innovation in Media Design, Victoria University of Wellington
Interesting to hear how your understanding evolved over time, I think I had a similar experience.
With regards to units, I see beginners using pixels for everything! Do you have any tips on choosing which units to use and why?
Such a big topic! That said...
Fonts set with
remare easier to control thanem, and if you use that thenembecomes a really handy method of specifying space around those elements. Iβve been experimenting with variations onfont-size: calc(1rem + 0.3vw);as a way of setting font sizes that donβt need media queries.Then there are things like trying to use
max-widthinstead ofwidthetc. Really depends on the context. πI know itβs a big topic but thanks for sharing those great tips. The
font-sizecalculation looks great.Iβm loving
vwandvhunits at the moment for making things more responsive.