Web development – Telegram
Web development
3.97K subscribers
410 photos
31 videos
80 files
87 links
Web development learning path

Frontend and backend resources.

HTML, CSS, JavaScript, React, APIs and project ideas.

Join 👉 https://rebrand.ly/bigdatachannels

DMCA: @disclosure_bds
Contact: @mldatascientist
Download Telegram
UI Color Rule: 60-30-10
👍1
Positioning of Elements with CSS grid
Anatomy of Portfolio Homepage
CSS3 :nth-child() Selector: Quick Visual Guide

The :nth-child() pseudo-class lets you target elements based on their position among siblings.

Here's what each pattern selects (yellow = matched):
🔹first-child → 1st child only
🔹last-child → Last child only
🔹nth-child(2) → Exactly the 2nd child
🔹nth-last-child(2) → 2nd from the end
🔹nth-child(odd) → 1, 3, 5, 7… (odd positions)
🔹nth-child(even) → 2, 4, 6, 8… (even positions)
🔹nth-child(n+4) → From 4th onward (4, 5, 6…)
🔹nth-child(3n+1) → 1, 4, 7, 10… (every 3rd, starting at 1)
🔹nth-child(3n-1) → 2, 5, 8, 11… (every 3rd, offset by -1)
🔹nth-child(4n) → 4, 8, 12… (every 4th child)

Pro tip: n starts at 0. so 3n+1 hits 1st, 4th, 7th…
3
DOM IN JAVASCRIPT
👍2
JavaScript
Reasons to Learn JS
1
Using JavaScript as a Full-Stack Developer
👏21
Check if User Prefers Dark Mode
1👍1
A web developer Check List
CSS CURSOR PROPERTIES
👍1🥰1
Accent-color in CSS
JavaScript Objects
RESTful API Design Tips
1
How does HTTPS work?
CSS Theme Toggle Button Animation
Closures in JavaScript
Top Node js Frameworks
CSS CHEATSHEET
👍1
HTML Class vs ID Attribute
👍51
📌How Tall Should a Navbar Be? A Pixel Guide from Top Platforms