6.S082 Lecture 9 Layout

Topics for today

Positioning

How do we break out of the flow and lay elements over others?

  • Positioning allows you to take elements out of the normal document layout flow, and make them behave differently, for example sitting on top of one another, or always remaining in the same place regardless of scrolling.
  • The position property controls which positioning scheme is used. Its initial value is static, which corresponds to the default document flow.
  • What do you notice when position: absolute is applied?
  • To control the element offsets, we use the top, right, bottom, left properties.
  • These are relative to the element’s containing block. By default, this is the initial containing block, a rectangle with the same dimensions as the viewport, anchored to the top of the document.

position: absolute takes elements out of normal flow and places them over everything else

Use the offset properties (top, right, bottom, left) to control the placement of absolutely positioned elements

First view:

  • Side note: all: unset resets all CSS properties to their initial or inherited values (depending on whether they are inherited). Useful for undoing UA styles in one fell swoop!
  • Here we want to position the close button relative to the notice, but the top and right offsets we try are relative to the top and right of the viewport. What can we do?
  • position: relative makes this element the containing block of any positioned descendants, i.e. the element the offset properties count from.
  • What happens if we need to position the notice absolutely? That works too! In fact, any value other than static makes the element the containing block
  • Can we center the absolutely positioned notice in the viewport? Let's try top: 50%; left: 50%;. What happens?
  • z-index controls which element is on top of what. Its initial value is auto which corresponds to source order.

Second view:

  • Note that when we scroll the notice moves. What if we want it to stay in the same place?
  • position: fixed to the rescue! It's just like absolute but the containing block is the viewport. This has the effect of the element staying in the same place during scrolling.

Terminology
Positioned element is any element with position != static

Any positioned element is a containing block of any positioned descendants
= that's where top, right, bottom, left count from

Read more about the containing block on MDN

position: fixed allows us to position elements in the same place regardless of scrolling

  • position: sticky is a hybrid of relative and fixed:
    • If the element is in view, it behaves like relative.
    • If the element is not in view (the user has scrolled), but its containing block is, it behaves like fixed
    • If its parent gets out of view as well, it behaves like relative again
  • What happens with horizontal scrolling?

position: sticky makes elements stay in the viewport for as long as their ancestors do

When learning CSS, the precision of absolute positioning may be tempting, but avoid it: It will bite you back later, when you need to make changes!

Do not use absolute positioning to avoid figuring out layout: it will bite you back!

Floats

  • The float property removes an element from normal flow and sticks it to the left (or right) side of its parent container. Any content that comes below the floated element in the normal layout flow will now wrap around it, filling up the space to the right-hand side of it as far up as the top of the floated element.
  • While we can add a margin to the float to push the text away, we can't add a margin to the text to move it away from the float.
  • This is because a floated element is taken out of normal flow, and the boxes of the following items actually run behind the float, as we can see by applying backgrounds.
  • How could we make this layout more visually interesting and alternate floating the images left and right?

Floats push an element to the left or right and flow the rest of the content around it

Problems with floats

  • What happens when all the floated images are staggered together?
  • What happens when there is not enough content to flow around the entire vertical edge?
    • Can we move the last image upwards?
    • clear: both can help with teh footer, but is not ideal (try adding some top margin…)

These crude tools (float & clear) were how CSS layouts were done until ~2015!
🤭🤢🤯

Grid Systems

In graphic design, as in architecture, the guts of a finished product are held up by an underlying support structure that—more often than not—is invisible to the viewer, but can just as easily make or break a design.

Grids are everywhere

Which design principles does a grid facilitate?

On the Web, grids must be flexible

How do we implement grids with CSS?

Grid Layout

  • display: grid enables Grid layout on an element. This element becomes the Grid Container and its children are called Grid Items.
  • display: grid doesn’t do much on its own, you also have to define the Grid template. There is a number of properties to do that, such as:
    • grid-template-rows
    • grid-template-columns
    • grid-template
    • …and many more
  • The 1fr unit allows us to distribute the available space in fractions without having to do any math with percentages.
  • The grid-gap property allows us to set spacing between the grid cells.
  • The grid-row and grid-column properties allow us to place items on specific rows and/or columns. Note that multiple items can be placed in the same cell, and then they will overlap!

Some terminology…

Grid cell

A single unit of a CSS grid

Grid Lines

The vertical and horizontal lines that divide the grid and separate the columns and rows.

Grid area

Rectangular space surrounded by four grid lines. A grid area can contain any number of grid cells.

Grid track

The space between two grid lines.

Grid track

This space can be horizontal or vertical

Grid row

A horizontal track of a grid

Grid column

A vertical track of a grid.

Gutter

The space between rows and columns in a grid

Grid Container

The element with display: grid

Grid Item

Any element that is a direct child of a grid container

-->

Grid Layout

  • Defining named areas is another way to specify a grid.
  • grid-area allows you to assign an element to a named area.
  • Then, rearranging elements on the grid is just a matter of editing the grid template!
  • grid-row and grid-column allow us to control which grid lines elements fall on.
  • The repeat allows us to create multiple columns or rows with the same metrics
  • Replaced elements with intrinsic dimensions still retain them in grid layout, unless set otherwise
  • grid-row-end and grid-column-end allow us to make elements span multiple grid cells without explicit control of which grid cells they fall on.
  • The dense keyword in grid-auto-flow prevents holes
  • display:contents allows us to make descendants grid children
  • Text nodes are grid items too!

One dimensional layout

  • Grids are tremendously useful, but can be overkill for certain things
  • Often we don't want the two-dimensional alignment of grids, and maintaining a grid template can be a pain
  • display: flex enables Flexbox layout on an element. This element becomes the Flex Container and its children are called Flex Items.
  • flex: N defines the proportion that a flex item spreads over.
  • flex-direction: column on the flex container makes the items flow from top to bottom
  • align-items and justify-content on the flex container specify alignment in each direction. Which direction depends on the value of flex-direction
  • MultiCol Layout

    • Multiple Column Layout is another type of single-dimensional layout mode.
    • It is activated by using columns, column-count, or column-width
    • column-gap (in the future just gap) allows you to control spacing between columns
    • column-rule allows you to add lines between columns. Its syntax is similar to border.

    Multicol is not only about text, it can be used to lay out any element