Contenu du cours
CSS Fundamentals
CSS Fundamentals
1. Getting Started with CSS
What is CSS and Why is it Important?Linking CSS to an HTML DocumentMastering CSS Selectors for Styling HTML ElementsChallenge: Apply Your First CSS StylesChallenge: Style with Class SelectorsEnhancing Styles with User Action Pseudo-ClassesChallenge: Apply User Action Pseudo-ClassesChanging Text Colors in CSSOptimizing Workflow for Efficient CSS CodingChallenge: Use Variables for Better CSS Management
3. The CSS Box Model & Spacing Elements
What is the CSS Box Model?Understanding Box Sizing in CSSAdding Space with Margins and PaddingChallenge: Apply Box Sizing to ElementsUsing Structural and Functional Pseudo-ClassesChallenge: Practice Structural Pseudo-ClassesUnderstanding Block, Inline, and Inline-Block ElementsWorking with Block-Level ElementsWorking with Inline ElementsChallenge: Predict Page Layout with Different Element Types
Working with Inline Elements
Inline elements stay on a single line and wrap to the next line when space runs out. This behavior is controlled by the CSS property display: inline
.
Key points about inline elements:
- They default to
display: inline
; - Their width and height are determined by their content and cannot be explicitly set;
- Only horizontal properties like
padding
,margin
, andborder
can be applied.
Let's examine an example where some styles impact the element, while others do not, within the CSS file:
index.html
index.css
index.html
Tout était clair ?
Merci pour vos commentaires !
Section 3. Chapitre 9