Web Development
131K subscribers
567 photos
58 videos
542 files
113 links
Learn to code and become a Web Developer with HTML, CSS, JavaScript, React, Node.js

💳 Paid ads: https://telega.io/c/Webdev_Trainings
Download Telegram
Have you seen those websites which shows a list of brands or images with a marquee effect, that seem to go on forever? Here is a tutorial on how to implement exactly that 🤩 in CSS
44👍11🔥3
🖐Balancing Text In CSS

How to make text look more balanced
in CSS.

https://ishadeed.com/article/balancing-text-css/
Please open Telegram to view this post
VIEW IN TELEGRAM
30👍4🔥2
🔰 About Flexbox
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
64👍21🔥9
Media is too big
VIEW IN TELEGRAM
🔅 The Joy of CSS Grid - Build 3 Beautifully Simple Responsive Layouts
23
codes.zip
4.1 KB
📦 Codes: The Joy of CSS Grid - Build 3 Beautifully Simple Responsive Layouts
18🔥2
🔅 Let's Make a chip in CSS

🔗 Web Development
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
34👍7🔥1
⌨️ Useful CSS grid cheat sheet

You’ve seen this many times. But practice makes perfect, right?
Please open Telegram to view this post
VIEW IN TELEGRAM
55👍17🔥12
🔅 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.
23
🔅 CSS Clamp is the future
8
🔅 CSS Clamp and font-size

p {
font-size: clamp(1rem, 4vw, 1.5rem);
}
19👍5