Hot tips are spicy lil' nuggets related to web development and tooling that I share on my twitter account. I've logged them here to make them easier to find.
Page 10 of 26
🔥 Flexbox Tip: A dummy element set to flex-grow: 1; will take up any remaining space after sibling elements take up their natual size
🔥 Super happy to announce Purchasing Power Parity for my courses.
🔥 Object Spread is coming soon to a JS runtime near you! Handy for creating shallow copies of an object without Object.assign()
🔥 You can destructure anything that returns an array, like when you split a string!
🔥 Use git checkout - to quickly jump back to your last git branch
git checkout -
🔥 Rename and Destructure properties of a return object with ES6 destructuring
🔥 You can disable an entire form or groups of inputs by wrapping in a <fieldset> and applying the disabled attr
🔥 Forms and inputs are available via properies on document.forms. You might not need a selector 😃
🔥 :nth-last-child() will give you nth-child but start counting from the end.
🔥 is a handy site to quickly view CSS cursor options and copy to clipboard.