Please turn JavaScript on
Frontend Masters Boost RSS Feed icon

Frontend Masters Boost RSS Feed

We bring you the latest updates from Frontend Masters Boost RSS Feed through a simple and fast subscription.

We can deliver your news in your inbox, on your phone or you can read them here on this website on your personal news page.

Unsubscribe at any time without hassle.

Frontend Masters Boost RSS Feed's title: Learn JavaScript, React, and TypeScript to Node.js, Fullstack, and Backend | Frontend Masters

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  0.66 / day

Message History

I had a situation where I wanted to highlight an arbitrary element on a page. Like, call attention to it briefly.

There is a pretty obvious and straightforward way to do this. We could apply an inset style box-shadow to whatever, and that would apply a nice glow that works just fine:

.highlighted-element { box-shadow: inset 0 0 40px 8px oklch(0.5574 0.2911 ...

Read full story

Jake has a very nice, clear video about what text-box solves in CSS. It essentially makes even padding on an element (like a button) doable without magic numbers, and that will work across any font (sick). Temani


Read full story

In a previous article, calculated a few values for a responsive grid such as the number of columns, the number of rows, and the coordinates of the grid items.

Knowing that each item is automatically placed and spans only one row and on...


Read full story

Love these little animations (“code snacks”) from Lauren Basser that illustrate basic technological concepts. Check out the ones for Working Directory and Shadow DOM — not the easiest concepts to illustrate as simply as this!


Read full story

There is a new progress() function in CSS that maps a given value against a value range. It can be used for layout scaling, but it can do more, as you’ll see in this article where progress() is used to work out a boolean-like lo...


Read full story