Web Developement
4.46K subscribers
633 photos
57 videos
467 files
138 links
Download Telegram
🔅 CSS: Custom List Markers
🔅 CSS Clamp

clamp(minimum, preferred, maximum);


In this example, the preferred value is 50%.

On the left 50% of the 400px viewport is 200px, which is less than the 300px minimum value that gets used instead.

On the right, 50% of the 1400px viewport equals 700px, which is greater than the minimum value and lower than the 800px maximum value, so it equates to 700px.
🔅 CSS Clamp is the future
🔅 CSS Clamp and font-size

p {
font-size: clamp(1rem, 4vw, 1.5rem);
}
⌨️ CSS Filters
🔅CSS: Faded Background
🔅 Difference Between opacity, visibility and display