Please enable JavaScript.
Coggle requires JavaScript to display documents.
CSS: Layout - Coggle Diagram
CSS: Layout
-
-
-
-
Browser support
-
Using browser fallbacks
A site should look the best in a modern browser while still being generally readable in an older browser
-
-
-
Vendor prefixes
-
Grid
-ms-
on IE10, IE11, and Edge
-
Grid
Basics
-
Made up of columns, rows, and gutters between rows and columns
-
Items
-
Area-based placement
grid-template-areas
-
-
Non-repeating, rectangular areas
-
-
Floats
float
Floated element is removed from normal flow and positioned to the left or the right within its parent
-
-
clear
Position element in a new line by clearing items floated to the left, right, or both
-
-
Legacy layout methods
-
Legacy grid frameworks
-
Flexible-width
Percentage widths should be used for container, column, and gutter widths
-
-
-