Michael Baisdenmikesselftaughtbolg.hashnode.dev·Sep 25, 2024HTML and CSS bringing it all together!Intro This is my CSS Part 2. In the previous article, I covered the basics of CSS, including what CSS is, the syntax, and some common properties. Now that we have an understanding of HTML and CSS, I will show you how to use them together. I'll explai...My self-taught journey to Programing and the technologies!CSS
code-passionchinumoon.hashnode.dev·Jul 4, 2024Exploring the :has() Selector in CSSCSS has progressed greatly over time, introducing a number of advanced selectors that improve the ability to style web pages with precision and flexibility. One of the most recent additions to the CSS selector is the :has() pseudo-class. This blog wi...has selector
saiprasad padhysaiprasadpadhy.hashnode.dev·Nov 24, 2022Flexbox made easy...Flexbox is a great way to organize content on our web page as we need. Sometimes it works like a magic when we add display: flex to the parent but sometimes it won't work as expected and it will be very hard to debug and understand why it happens. In...30 readsdisplay:flex
saiprasad padhysaiprasadpadhy.hashnode.dev·Nov 19, 2022Pseudo-classes CSSPseudo-classes are widely used to make our webpage interactive like applying styles on hover of a button (:hover) and changing the styles if a checkbox is checked (:checked) etc., a pseudo-class is denoted by a colon(:) followed by the pseudo-c...47 readsPseudo-classes
saiprasad padhysaiprasadpadhy.hashnode.dev·Nov 19, 2022All About CSS SelectorsThe most important part of the CSS is targeting specific elements and styling those. In this blog, we will go through some of the frequently used selectors with examples. Universal Selectors These selectors will select all the elements in the HTML pa...50 readsCSS