Vigo's Weekly - Issue #04
📒Articles
Understanding The Calc() Function In CSS
So, what exactly is CSS calc,
and why should you care? Simply put, calc
lets us perform mathematical calculations within our CSS stylesheets.
Component DOM Testing in Angular
Components consist of a TypeScript class and an HTML template associated with it. Doing DOM Testing means that we test the Component as a whole entity, instead of testing only the Component’s class.
Web Development Trends For 2024
In this article, we will unveil the key trends that will define the year 2024, providing you with the tools and knowledge to stay ahead of the curve.
🧰Curated Tools
Sponsored by Handpicked Tools
Daisy UI
The most popular component library for Tailwind CSS
Ko Fi
Join 1M+ creators getting donations, memberships and sales from fans!
UI Gradients
A handpicked collection of beautiful color gradients for designers and developers
🛠Code Corner
The Shortest Selector For The Root Element
& {
font-family: sans-serif;
background: #25fca4;
--variable: value;
/* and so on */
}
/* same as html {} and :root {}
with a lower specificity!
*/