Giter VIP home page Giter VIP logo

advanced-css's Introduction

design

Advanced CSS and stuff

Before you write that beautiful CSS

Normalizing your canvas

Different browsers have different base styles. To get around the issue of browsers destroying your hard work, it's wise to use normalizing methods to standardize everything. Luckily there are numerous libraries available.

Why not reset? Reset removes the base styling, where normalizing the all the elements gives you a foundation to work on and apply your styles to.

Box-sizing

As you worked with CSS, you might have noticed some quirks when dealing with a div's height and width when paddings are applied. Most commonly when working with grids.

Let's say you're working on a two column grid and you want to add padding. Woah now! Without applying box-sizing, the extra padding adds to the width. Suddenly your 50% columns become 50% + 20px if you padded a 10px padding to the sides. Now your columns are stacked on top of each other and your layout is ruined.

There must be a better wayyyy...

There is:

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

What does this do? It forces anything that adds to the element's height or width to be included in the height and width attribute. A 200px div with a 10px padding is still 200px, making it easier to work with in your UI.

Getting started

advanced-css's People

Contributors

mklemme avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  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.