GithubHelp home page GithubHelp logo

bcem2004 / html-css-layout Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ga-wdi-boston/html-css-layout

0.0 0.0 0.0 180 KB

Using floats/clears and the `position` attribute to control layout.

License: Other

JavaScript 87.38% CSS 2.90% HTML 9.72%

html-css-layout's Introduction

General Assembly Logo

HTML & CSS Layout

Preparation

  1. Fork and clone this repository.
  2. Create three new branches, training, float-site, and lookalike-site.
  3. Install dependencies with npm install.

Objectives

Developers should, at the end of the lesson, be able to:

  • Explain the box model of element spacing.
  • Establish spacing inside and outside of elements using margin and padding.
  • Explain the difference between different types of distance measurement in a web page, including 'px', '%', and 'em'.
  • Use 'float' and 'clear' to stack elements alongside each other.
  • Employ media queries to change CSS rules based on screen size.
  • Explain the difference between 'static' and 'fixed' positioning.

Historic CSS Layout

So far, we've mostly talked about using CSS for styling our page - adding colors, fonts, etc. In this talk, we'll be examining how CSS can be used to control a webpage's layout.

Back in the 90s, layout was accomplished using tables (<table>), which had rows (<tr>) and row subdivisions (<td>). However, this was problematic for several reasons:

  1. Layout was hard-coded into the page - it couldn't easily be adjusted.
  2. As a result of (1), keeping layout consistent between multiple pages was tedious.
  3. Nesting tables within tables quickly became a nightmare - how could you tell apart the <tr> of one level from the <td> of another?
  4. It wasn't very semantic - our markup would always say 'table', even though our content was typically not a table.

Using CSS to control our layout addressed all of these issues. What's more, it effectively abstracted away the layout of our page from the content of our page.

Box Model

In addition to setting an element's height and width, elements have three other properties that explicitly control spacing:

  1. 'Border' sets a perimeter around an element. In addition to specifying a color and a particular type of border, you can also specify a thickness.
  2. 'Margin' specifies spacing between the outside of an element's border and any adjacent elements.
  3. 'Padding' specifies spacing between the inside of an element's border and the contents of that element (which includes height and width!)

Together, these attributes form the box model, a way of describing the space taken up by an element.

Note: The Box Model explains how CSS width is Calculated. By default, how wide an element is on the page is a combination of width + padding + border and the rendered height = height + padding + border. This can be problematic when trying to create a layout or position things logically on the page. To calculate border, margin, and padding into the element's size, the element's CSS box-sizing property should be changed from the default content-box to border-box.

Box Model

Every one of these attributes, including height and width, can be specified in the following terms:

  • px : fixed number of pixels.
  • % : size is relative to element that contains it ("parent"). As a value of height, % is relative to the parent's height, but for every other dimension, % is relative to the parent's width value.
  • em : ties dimensions to font size - one em is the width of the letter 'm'. For all dimensions except font-size, em will refer to the font size of the element; as a value for font-size, em refers to the font size of the parent.

Float and Clear

Block elements, as a rule, always stack vertically - never side by side. Each block element effectively has a 'new-line' built into it, forcing the next piece of content down.

Floated Block Elements

This can be circumvented using the float property; floated elements act like words within a block of text, wrapping around the screen when it is too narrow to display the entire line.

Floated Block Elements

Floated Block Elements

Like words, floated elements can be stacked from left-to-right (left-floated) or from right-to-left (right-floated)

To make something fall beneath a set of floated elements, rather then wrapping around it, you can use the clear attribute; set clear to left to clear a left float, right to clear a right float, or both to clear either kind of float.

Code Along: Float Demonstration

Working on our training branch, let's use the example HTML code to demonstrate floating.

Clearing a Float

Ordinarily, elements expand to hold their containers. However, floated elements are excluded from this, so floating an element may lead to its container's height shrinking down to nothing. To fix this, we use a "clearfix hack" by applying overflow: hidden; to the container's style declarations.

Lab: Box Model, Float/Clear

Working with your squads on the float-site branch, use index.html to create simple look-alikes that mimic the layout (but not the actual content) of one of the following sites, using what you've learned about so far about CSS positioning (including margin, padding, float and clear).

Hints

  1. Don't be afraid to 'cheat' by looking at the source code of the site you're mimicking.
  2. Keep your sketches simple - don't add details like text, colors, etc.
  3. When drawing boxes, try not to draw them flush against each other - adding a little bit of space helps to make it clear when boxes should be nested inside other boxes.
  4. Don't got more than 4 levels deep in your nesting.
  5. Bright colors for your divs help to make layout mistakes obvious.

Media Queries

Using % dimensions allows you, to a certain degree, to account for a variety of screen sizes by scaling up linearly. Sometimes, however, you don't want to scale linearly; instead you want size to be fixed sometimes, to scale linearly at others, or even to disappear entirely at a certain size.

Fortunately, CSS has a tool called a media query designed for this specific use case.

@media (max-width: 700px) {
  div {
    width: 300px;
    height: 300px;
  }
}

A media query acts a little like an if statement for your CSS; it will selectively hide or show the CSS it contains based on whether or not the condition in the query comes back as true.

Media queries can often be thought of as blocks of CSS that override existing styles from your stylesheet (although they can do much more than this). They, therefore, are always placed at the bottom of your stylesheet.

Here are some properties that can be used to build media queries:

  • min-width: CSS is visible at all screen widths larger than the given value.
  • max-width: CSS is visible at all screen widths smaller than the given value.
  • min/max-resolution: CSS is visible above/below a given resolution.

Lab: Media Queries

Revisit the basic site from the previous float-site branch exercise, and add a new effect that triggers when you shrink the screen below 800px wide.

Static vs Fixed Positioning

All of the rules that you've learn so far are based on one paradigm of positioning, called 'static' positioning. However, it's possible to change this paradigm and employ a different approach for positining elements using the position attribute.

Though there are others, the most significant type of positioning besides static positioning is fixed positioning. fixed positioning defines the position of an element with respect to the view window, essentially 'fixing' its position on the screen. Fixed positioning is frequently used in parallax scrolling, or for holding a navigation bar at the top/side/bottom of the screen.

.bar {
  position: fixed;
  left: 130px;
}

Lab: Static vs Fixed Positioning

Switch to the lookalike-site branch and work in your squads to create your own look-alike for the following websites. Try to use fixed positioning at least once.

Further Practice: Relative and Absolute Positioning

Research relative and absolute positioning in CSS. How are they used? A helpful reference for understanding is this CSS-tricks blog post.

  1. All content is licensed under a CC­BY­NC­SA 4.0 license.
  2. All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact [email protected].

html-css-layout's People

Contributors

ga-meb avatar laurenfazah avatar fishermanswharff avatar payne-chris-r avatar micfin avatar realweeks avatar berziiii avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.