The Chrome team had a blast connecting with fellow web developers at the CSS Day conference. We spent time answering questions at the CSS Helpdesk and, just as importantly, listening to what's important to you. One question we posed really sparked some great conversation: What's still missing from CSS? We got a ton of insightful feedback (and even a few whiteboard sketches! ✍️). Now, we want to hear from you!
Chrome for Developers’ Post
More Relevant Posts
-
Future-Focused Web Developer | Transforming Concepts into Beautiful Websites | Boosting Business Online
🎨 Mastering CSS Specificity! 🖥️ I recently explored the fascinating world of CSS specificity in my web development journey. Here's a quick example I worked on, where I played around with different selectors to see how CSS rules apply when multiple styles are in conflict. In the code: Type Selector has a specificity of 1. Class Selectors each have a specificity of 10. Attribute Selector also carries a specificity of 10. The result? The attribute selector took precedence with a bright yellow background, overriding the color styles! 🟡 Understanding how CSS prioritizes styles is crucial for creating well-structured and maintainable code. #CSS #WebDevelopment #Frontend #CodingJourney #LearningByDoing
To view or add a comment, sign in
-
🌟 Day 7 of #100DaysOfCode: Web Development Journey! 🌟 Today, I leveled up by diving into CSS cascade, specificity, inheritance, and combining CSS selectors! 🖥️✨ It was amazing to see how these concepts work together to control the styling and behavior of elements on a webpage. 🎨💡 I’m feeling more confident in writing clean, efficient CSS. 💻💪 #DrGVishwanathan #WebDevelopment #CSS #FrontendDevelopment
To view or add a comment, sign in
-
I discovered the @scope rule 🤯 today. Tbh 🤫 I expected it to be there, though I know it must be 🆕. And as if the web was listening to me it had been spawned just for me ;) So I wrote ✍️ a tiny bit about it. https://lnkd.in/dQCfprHd In a nutshell 🐣 ``` <section> <style> @scope {...} </style> ... </section> ``` All inside the {...} applies ONLY to the DOM nodes inside the <section>. #css #frontend #development #web #browser
Inline `@scope` for CSS
picostitch.com
To view or add a comment, sign in
-
Engineering Student at Panimalar Engineering College | Aspiring Full Stack Developer | Exploring New Tools and Technologies
Week 3, Day 7 of Full Stack Development Journey: Exploring CSS CSS Transitions These allow for smooth, gradual changes in property values, enhancing the user experience on web pages. Key Properties: • transition-property: Specifies the CSS property to animate. • transition-duration: Defines the duration of the transition. • transition-timing-function: Describes the speed curve of the transition.(e.g., ease, linear, ease-in, ease-out). • transition-delay: Sets a delay before the transition starts. Example: .box { width: 100px; height: 100px; background-color: blue; transition: width 2s ease-in-out, background-color 1s; } .box:hover { width: 200px; background-color: red; } When you hover over the .box element, its width transitions from 100px to 200px over 2 seconds, and its background color changes from blue to red over 1 second. #FullStackDevelopment #CSS #WebDevelopment #LearningJourney #CSSTransitons #Transitions
To view or add a comment, sign in
-
"Day 1 of #100DaysOfCode! 🎉 Today, I kicked off my web development journey by exploring CSS selectors. From basic element and class selectors to more advanced attribute and pseudo-class selectors, it's amazing how much control we can have over styling our web pages! The more I learn, the more I realize how crucial these foundational concepts are to crafting beautiful, responsive designs. Super excited to continue building my skills one day at a time! 🚀 #WebDevelopment #CSS #CodingChallenge #LearningJourney #FrontendDevelopment #CSSSelectors"
To view or add a comment, sign in
-
Passionate Full-Stack Engineer | HTML5, CSS3, JavaScript Savant | React Aficionado | Dedicated to Team Success
"Attention fellow developers! 🚨 TailwindCSS, the game-changing utility-first CSS framework, has just released its highly anticipated v4.0 update, and it's a total game-changer! 🔥 The TailwindCSS team has been hard at work, and they've just open-sourced their progress on this massive update. From a revamped configuration system that gives you unprecedented control over customization to performance optimizations that'll make your web apps fly, v4.0 is packed with exciting new features. But that's not all! They've also introduced a ton of new utility classes, giving you even more granular control over your styling. Say goodbye to wrestling with custom CSS and hello to a streamlined, utility-first workflow that'll supercharge your development process. Whether you're a seasoned Tailwind CSS pro or a newcomer to the utility-first world, this update is a must-try. Head over to the Tailwind CSS blog (link in the comments) to learn more about the awesome enhancements in v4.0 and get ready to take your front-end game to the next level! 🚀"
To view or add a comment, sign in
-
Computer science engineering student at SRM University | Open Source | Passionate about coding, exploring tech trends, and building a brighter digital future. 🚀
🚀 Day 2 of my web development challenge complete! 💻 Today I dove into CSS basics, learned how to add CSS, explored various selectors, and experimented with different properties. Excited to keep styling and making my projects come to life! #100DaysOfCode #WebDevelopment #CSS
To view or add a comment, sign in
-
🎨 Simplifying Stylesheets at Archetype Themes! 🚀 We've streamlined our theme development by saying goodbye to SASS and embracing the simplicity of Vanilla CSS, complemented by PostCSS for a touch of modern magic. So, why the switch? 🧩 PostCSS empowers us with the tools to use tomorrow’s CSS syntax today. We're utilizing it to polyfill CSS Nesting, gearing up for the future when it becomes widely adopted in browsers. 🔍 Why the Shift? - Leaner Builds: By cutting down on pre-processors, our build pipeline is leaner and meaner, translating to quicker theme compilation times. - Future-Ready: We're aligning closer with native browser capabilities, preparing for the day when CSS Nesting is a standard feature across the board. - Easier Maintenance: Vanilla CSS + PostCSS makes our codebase more accessible for new developers and simplifies theme customization for merchants. 👨💻 What's Next? - A more robust and efficient workflow that puts us at the forefront of web development best practices. - Improved load times and performance for all our Shopify themes. - Continuous updates as CSS evolves, ensuring our themes are always cutting-edge. We are committed to ensuring our themes not only look amazing but also are built on a solid, maintainable foundation. Staying ahead of the curve is what keeps us ticking at Archetype Themes! 🛠️💡 #WebDev #CSSNesting #PostCSS #ShopifyThemes #ThemeDevelopment
To view or add a comment, sign in
-
Aspiring Computer Science Engineering Student | Eager to Explore Web Development | Open to Learning and Collaborating | Seeking Opportunities to Grow 🌱
Day 18 of my Web Development Journey: Why Inheritance in CSS is Key to Clean Code❓🤔 Today, I explored inheritance in CSS and its role in writing clean, maintainable code. By allowing certain styles (like fonts and colors) to automatically pass from parent to child elements, inheritance reduces redundancy and keeps code more concise. This leads to easier updates—change a style at the top level, and it cascades throughout the site. Inheritance ensures consistency, reduces repetition, and improves scalability. It’s a simple yet powerful way to streamline development! #WebDevelopmentJourney #CSS #CleanCode #FrontendDevelopment #LearningToCode
To view or add a comment, sign in
6,502 followers
indépendant
1moJe pense avoir fait un très bon travail