Web Developement
4.46K subscribers
633 photos
57 videos
467 files
138 links
Download Telegram
Media is too big
VIEW IN TELEGRAM
CSS Cascade Layers Tutorial #1 - Selector Specificity 101
Media is too big
VIEW IN TELEGRAM
CSS Cascade Layers Tutorial #2 - Using Cascade Layers
Media is too big
VIEW IN TELEGRAM
CSS Cascade Layers Tutorial #3 - Layer Priority
Media is too big
VIEW IN TELEGRAM
CSS Cascade Layers Tutorial #4 - Importing Into Layers
🔅 Building Great Forms with HTML and CSS

🌐 Author: Emily Kay
🔰 Level: Intermediate

Duration: 6h 59m

🌀 Learn how to create useful and user-friendly web forms with HTML, CSS, and JavaScript. Discover how to create login, booking, payment, search, and other custom forms.

📗 Topics: Cascading Style Sheets, Forms Development, HTML

📤 Join @webdev_trainings for more courses
🔅 CSS: Advanced Layouts with Grid

🌐 Author: Morten Rand-Hendriksen
🔰 Level: Advanced

Duration: 3h 21m

🌀 Learn how to take full advantage of the capabilities of CSS Grid to build interfaces that are attractive, accessible, and responsive.

📗 Topics: CSS Grid Layout

📤 Join @webdev_trainings for more courses
🔰 Laravel 10 Job portal application 2023 (go beginner to pro)

🌟 4.3 - 23 votes 💰 Original Price: $19.99

Let's learn laravel from basics and make a complete job portal web application. Enroll today for a rewarding learning.


Taught By: Ranjeet Karki

Download Full Course: https://t.me/webdev_trainings/639
Download All Courses: https://t.me/zero_to_mastery
🔅 CSS: Balanced Text
🔅 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);
}