CSS Beginners CourseCSS ColorsCSS has three main ways to set a color: named colors like lightcoral, hex codes like #000000, and RGB values like rgb(255, 255, 255). There's also RGB...Scott Weaver•December 3, 2020Read
CSS Beginners CourseCSS Selectors: Element, ID, and Class, and When to Use EachBefore you can style anything in CSS, you need a way to tell the browser which element you're targeting. Basic CSS gives you three ways to do that: by...Scott Weaver•November 26, 2020Read
CSS Beginners CourseInline, Internal, and External Style Sheets: When to Use EachCSS can live in three different places: directly on a tag, inside the page it styles, or in its own file shared across every page that links to it. Sa...Scott Weaver•November 24, 2020Read
CSS Beginners CourseWhat is CSS? The Cascade, Explained with One ExampleCSS stands for Cascading Style Sheets. It's the language that tells a browser how to display HTML content: colors, fonts, spacing, layout, all of it....Scott Weaver•November 21, 2020Read
CSS Beginners CourseBasic CSS Crash Course: Building a Styled Page from a WireframeHTML defines a page's structure and content. CSS styles that structure. The fastest way to see how they work together is to build something end to end...Scott Weaver•November 18, 2020Read