"Today, Iβm getting into the CSS Box Model! π§±π The box model is how elements are structured with padding, borders, and margins. Here's a simple example to understand how it works.
<style>
.box {
width: 200px;
padding: 20px;
border: 5px solid blue;
margin: 15px;
background-color: lightgrey;
}
</style>
<div class="box">
<p>This is a box with padding, border, and margin.</p>
</div>
#CSS #BoxModel #Padding #Margins #LearnCSS
Please open Telegram to view this post
VIEW IN TELEGRAM
π3
Tip of the day! π― The Box Model has four key layers: Content, Padding, Border, and Margin. Padding is the space inside the element, between the content and the border. Margin is the space outside the border. Play around with them to see how they affect the layout! π‘
#CSSTips #BoxModelExplained #WebDesign #CSSLayout
#CSSTips #BoxModelExplained #WebDesign #CSSLayout
π7π₯1π«‘1
"Today, Iβm learning about CSS Flexbox! πͺπ It makes aligning elements super easy. Hereβs a simple example of how to use Flexbox to center items both vertically and horizontally.
<style>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 300px;
background-color: lightblue;
}
</style>
<div class="container">
<p>I'm perfectly centered!</p>
</div>
#CSS #Flexbox #LearnCSS #WebDesign
Please open Telegram to view this post
VIEW IN TELEGRAM
π3
Tip of the day! β¨ Flexbox is perfect for layout control. Here's a quick breakdown:
- justify-content: Aligns items horizontally (left, right, center)
- align-items: Aligns items vertically
- flex-direction: Defines the direction of the flex items (row or column).
Check out [Flexbox Froggy](https://flexboxfroggy.com) to practice! πΈ
#NewToolDiscovery
- justify-content: Aligns items horizontally (left, right, center)
- align-items: Aligns items vertically
- flex-direction: Defines the direction of the flex items (row or column).
Check out [Flexbox Froggy](https://flexboxfroggy.com) to practice! πΈ
#NewToolDiscovery
Please open Telegram to view this post
VIEW IN TELEGRAM
Flexboxfroggy
Flexbox Froggy
A game for learning CSS flexbox
π3
Hey, Friends! π itβs challenge time! π I'm stuck on Flexbox Froggy Level 24, and I need your help! πΈ
Drop your answers in the comments! Let's see who can solve it!π‘ π¬
Drop your answers in the comments! Let's see who can solve it!
Please open Telegram to view this post
VIEW IN TELEGRAM
π4
Today, Iβm diving into CSS Grid! πΊβ¨ Grid gives you superpowers when it comes to creating layouts. Hereβs a quick example where I create a basic grid with two columns and two rows.
<style>
.container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 100px 100px;
gap: 10px;
}
.box {
background-color: lightblue;
padding: 20px;
text-align: center;
}
</style>
<div class="container">
<div class="box">Box 1</div>
<div class="box">Box 2</div>
<div class="box">Box 3</div>
<div class="box">Box 4</div>
</div>
#CSS #CSSGrid #WebDesign #LayoutMastery
Please open Telegram to view this post
VIEW IN TELEGRAM
π5
Tip of the day! βοΈ Not sure when to use Flexbox or Grid? Hereβs a simple guide:
- Flexbox is great for 1D layouts (aligning items in a row or column). Perfect for menus or navbars.
- Grid is your go-to for 2D layouts (both rows and columns). Ideal for complex page layouts.
Use them together for ultimate layout control!πͺ
#CSSTips #FlexboxVsGrid #LayoutTips
- Flexbox is great for 1D layouts (aligning items in a row or column). Perfect for menus or navbars.
- Grid is your go-to for 2D layouts (both rows and columns). Ideal for complex page layouts.
Use them together for ultimate layout control!
#CSSTips #FlexboxVsGrid #LayoutTips
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯4π3
Today, I'm diving into CSS transitions! π¨β¨ Transitions allow for smooth changes between styles when a user interacts with elements. Here's a quick example of a button that changes color and size when hovered over.
<style>
.button {
background-color: lightblue;
padding: 10px 20px;
border: none;
border-radius: 5px;
transition: background-color 0.3s, transform 0.3s;
}
.button:hover {
background-color: lightcoral;
transform: scale(1.2);
}
</style>
<button class="button">Hover me!</button>
#CSS #Transitions
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯2
Tip of the day! Want your websites to feel interactive and polished? Use CSS transitions to add smooth effects when users hover, focus, or click on elements. Just add a π‘
#CSSTips #Transitions #InteractiveDesign
transition property to control the speed and behavior of your animations! #CSSTips #Transitions #InteractiveDesign
Please open Telegram to view this post
VIEW IN TELEGRAM
π1
π Big Milestone: HTML & CSS Course Completed! π»
Super excited to share that Iβve officially finished my HTML & CSS course! ππ Itβs been an incredible journey learning the fundamentals of web design, and now itβs time to level up. π
Next step? Iβll be diving into coding real-world projects to put my skills into action! πͺ Canβt wait to share my progress and creations with all of you. Stay tuned for some cool projects coming soon! π β¨
Letβs keep building and learning together! π
#WebDevelopment #CodingJourney #HTML #CSS #ProjectsAhead #MilestoneReached
Super excited to share that Iβve officially finished my HTML & CSS course! ππ Itβs been an incredible journey learning the fundamentals of web design, and now itβs time to level up. π
Next step? Iβll be diving into coding real-world projects to put my skills into action! πͺ Canβt wait to share my progress and creations with all of you. Stay tuned for some cool projects coming soon! π β¨
Letβs keep building and learning together! π
#WebDevelopment #CodingJourney #HTML #CSS #ProjectsAhead #MilestoneReached
π₯9π2π1
So Iβve started building my portfolio website, and wow, itβs a lot harder than I expected! π
Not only is designing something that reflects my skills a challenge, but the coding has been pretty tough too. Getting everything to work together smoothly and look right is way more complex than I imagined.
But hey, challenges make the process exciting, right? π Iβm learning a ton along the way, and I know itβll be worth it in the end. Gonna keep pushing through! πͺ
Any tips from those whoβve been there? Drop them below! π
But hey, challenges make the process exciting, right? π Iβm learning a ton along the way, and I know itβll be worth it in the end. Gonna keep pushing through! πͺ
Any tips from those whoβve been there? Drop them below! π
π5π₯1
π Portfolio Update: Refining & Progress! π»β¨
I just made some tweaks to the hero section to make it even cleaner, and Iβve officially finished the About Me section! π Feels good to see the site coming together bit by bit. On to the next partβ canβt wait to share more soon!
#PortfolioBuilding #WebDevelopment #DesignTweaks #Progress
I just made some tweaks to the hero section to make it even cleaner, and Iβve officially finished the About Me section! π Feels good to see the site coming together bit by bit. On to the next partβ canβt wait to share more soon!
#PortfolioBuilding #WebDevelopment #DesignTweaks #Progress
π5π₯5π1
π Portfolio Update: Finished & Now Making It Responsive! π»π±
Iβve officially finished building my portfolio! π Now, Iβm working on making it fully responsive so it looks great on all devices.
Iβve officially finished building my portfolio! π Now, Iβm working on making it fully responsive so it looks great on all devices.
π7π2
π Portfolio Complete & Live! ππ»
Iβm super excited to share that Iβve officially finished building my portfolio and itβs live now! π You can check it out here: (https://sifendev1.netlify.app). Iβve put a lot of work into this, from design to responsiveness, and Iβm so proud of how it turned out. Take a look and let me know what you think!π
#Projects
Iβm super excited to share that Iβve officially finished building my portfolio and itβs live now! π You can check it out here: (https://sifendev1.netlify.app). Iβve put a lot of work into this, from design to responsiveness, and Iβm so proud of how it turned out. Take a look and let me know what you think!
#Projects
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯16π4π―4
π 200 Subscribers! π
Weβve officially hit 200 subs! Iβm so grateful for everyone who's been following along and supporting my journey. This is just the beginning more exciting content, projects, and tips coming your way soon! π Thanks again, letβs keep growing together!
Weβve officially hit 200 subs! Iβm so grateful for everyone who's been following along and supporting my journey. This is just the beginning more exciting content, projects, and tips coming your way soon! π Thanks again, letβs keep growing together!
β‘12π4
Exciting news.. Iβm starting JavaScript tomorrow! Iβve been wanting to dive into it for a while, and now Iβm finally ready. Canβt wait to see where this takes me! π
β‘13π―3β2
Just kicked off my JavaScript journey, and today was all about variables and values! π€ It's pretty cool how I can store and use data in my code. Canβt wait to see how these basics will come together in real projects!
How was your first day with JavaScript? Any fun challenges? Let me know below! π
#JavaScriptJourney #WebDevelopment #Variables
Please open Telegram to view this post
VIEW IN TELEGRAM
π6β‘2π₯2
π Challenge Alert! π
Hey Code Fam, Iβm throwing down a challenge to YOU! π₯ Iβm about to start a new project that will evolve as I level up my web development skills, and I want YOU to help decide what I should build!
The challenge? π Give me your BEST project idea that:
- Starts simple (HTML, CSS, JS) π
- Can scale up to a full-stack app with frameworks, backend, databases, and even AI integration π
- Adds real-world value and could potentially be monetized π‘
- Is portfolio-ready to help me land that dream job! πΌ
π‘ Drop your project ideas below and letβs see who can come up with the most awesome concept! Iβll pick the top idea, build it, and share my progress with you all step by step! π₯
Will YOUR idea be the one I build? Letβs find out! β‘οΈ
#ChallengeAccepted #WebDevJourney #BuildWithMe
Hey Code Fam, Iβm throwing down a challenge to YOU! π₯ Iβm about to start a new project that will evolve as I level up my web development skills, and I want YOU to help decide what I should build!
The challenge? π Give me your BEST project idea that:
- Starts simple (HTML, CSS, JS) π
- Can scale up to a full-stack app with frameworks, backend, databases, and even AI integration π
- Adds real-world value and could potentially be monetized π‘
- Is portfolio-ready to help me land that dream job! πΌ
π‘ Drop your project ideas below and letβs see who can come up with the most awesome concept! Iβll pick the top idea, build it, and share my progress with you all step by step! π₯
Will YOUR idea be the one I build? Letβs find out! β‘οΈ
#ChallengeAccepted #WebDevJourney #BuildWithMe
Telegram
SeeFun.Dev
He/Him
Building, coding, and sharing
Github- https://github.com/sifenfisaha
Dm- @see_fun
Building, coding, and sharing
Github- https://github.com/sifenfisaha
Dm- @see_fun
π₯2β‘1