Recetas de CSS
Muy interesante todo lo que se explica en CSS Layout cookbook de Mozilla Developer Network:
The CSS layout cookbook aims to bring together recipes for common layout patterns, things you might need to implement in your own sites. In addition to providing code you can use as a starting point in your projects, these recipes highlight the different ways layout specifications can be used, and the choices you can make as a developer.
Las recetas que ofrece hasta ahora son:
Recipe | Description | Layout Methods |
---|---|---|
Media Objects | A two-column box with an image on one side and descriptive text on the other, e.g. a facebook post or tweet. | CSS Grid, float fallback, fit-content() sizing |
Columns | When to choose multi-column layout, flexbox or grid for your columns | CSS Grid, Multicol, Flexbox |
Center an element | How to center an item horizontally and vertically | Flexbox, Box Alignment |
Sticky footers | Creating a footer which sits at the bottom of the container or viewport when the content is shorter. | CSS Grid, Flexbox |
Split Navigation | A navigation pattern where some links are visually separated from the others. | Flexbox, margin |
Breadcrumb Navigation | Creating a list of links to allow the visitor to navigate back up through the page hierarchy. | Flexbox |
List Group with Badges | A list of items with a badge to display a count. | Flexbox, Box Alignment |
Deja un comentario