ʀᴇɢɪx – Telegram
ʀᴇɢɪx
550 subscribers
160 photos
59 videos
35 files
143 links
We design & develop modern websites for businesses and startups in Ethiopia | Based in Addis Ababa.
Sharing resources, code, and portfolios to help developers grow.

💬 Join the discussion: @codebyion
Download Telegram
What is overflow in CSS?


overflow controls what happens when content is too big for its box
It can

show everything (visible)
cut it off (hidden)
add scroll (scroll / auto)

<div class="box">Very long text here...</div>

<style>
.box {
width: 200px;
height: 60px;
overflow: auto;
border: 1px solid #ccc; }
</style>


@etwebs #css
1
😁8🤔1
⚡️ A great website for web developers!

It has ready made UI code you can use
Just copy the code and paste it into your project

🔗 https://snipzy.dev/

Don't forget to react for more content like this

@etwebs
👍72
what about this


A website full of small CSS lessons with examples
Easy to follow and great for beginners

link  https://cssreference.io

@etwebs
🔥5
😁6
A beautiful interactive tutorial from the Google Chrome team that will pump you up in web development

Inside are great materials on HTML, CSS, JS, accessibility, testing and a bunch of other useful stuff

https://web.dev/learn


@etwebs
👍2
ʀᴇɢɪx pinned a photo
Here is a collection of patterns in pure CSS you can easily customize and take seamless backgrounds for yourself. The collection is regularly updated

Here the link https://www.magicpattern.design/tools/css-backgrounds

@etwebs
4👍1
This HTML bug is unforgivable 👾

Not using the inputmode attribute on input elements is a serious mistake

inputmode tells the browser which on-screen keyboard to show the user for a particular input field Used with <input> and <textarea> elements

Improve UX by showing the appropriate keyboard for the input type

@etwebs
🔥9
#inspiration

Need some bento grid ideas? This website shows hundreds of real bento style designs used by popular websites

👉 https://bentogrids.com/

@etwebs #inspiration
🔥51👍1
Minimize CSS using shorthand

Less code, better performance

Instead of

margin-top: 10px;
margin-right: 20px;
margin-bottom: 10px;
margin-left: 20px;


Use

margin: 10px 20px;


It means
Top & Bottom - 10px
Right & Left - 20px

Cleaner and faster

@etwebs
🔥4👍1
When YouTube really said “This is for YOU 😭

@etwebs
🤣5
100 Days, 100 HTML, CSS, and JavaScript Projects (Source Code) 

Let's start creating all these projects in 100 days by making 1 project every day! ⚡️

@etwebs

100 project
🔥4
JUST I WANT TO REPOST THE RESOURCES

Learning & Practice Platforms

Exercism – Practice coding with mentorship
web.dev/learn – Learn web fundamentals by Google
OverAPI – Quick developer cheat sheets
Picular – Google for colors
Flexer.dev – Flexbox practice playground
Cheatography – 6,000+ cheat sheets

CSS Resources

Snipzy – Ready-to-use CSS snippets
CSS Reference – Visual CSS reference
MagicPattern – Generate beautiful CSS backgrounds

Project-Based Learning

50 Mini Projects by Brad Traversy
10 Frontend Practice Projects
100 Days, 100 Projects

🔥 Bookmark this and start building daily! And Don't forget to react✌️

@etwebs
❤‍🔥6🔥21
Shortcuts.design  a site with all the shortcut  for VS Code,Figma , Photoshop and many other tools

🔗 Link: https://shortcuts.design/

@etwebs
🔥9
Less Common HTML Elements and How to Use Them in Your Code

HTML has a lot of tags that many people use every day, like <div>, <p>, and <a>. But there are also some hidden gems that often go unnoticed. These tags can help make websites more engaging, accessible, and meaningful without much extra effort.


READ MORE

https://www.freecodecamp.org/news/less-common-html-elements-and-how-to-use-them/

@etwebs
This media is not supported in your browser
VIEW IN TELEGRAM
CSSBattle  compete to recreate visuals with the fewest CSS characters

cssbattle.dev

@etwebs
👍4