Skip to content

Instantly share code, notes, and snippets.

View RyanNHahn's full-sized avatar

Ryan Hahn RyanNHahn

View GitHub Profile
@RyanNHahn
RyanNHahn / css-selectors.md
Created October 24, 2018 13:48 — forked from magicznyleszek/css-selectors.md
CSS Selectors Cheatsheet

CSS Selectors Cheatsheet

Element selectors

Element -- selects all h2 elements on the page

h2 {
    foo: bar;
/**
* The first commented line is your codelet’s title
*/
p {
color: #f06123;
font: italic 123% Georgia, serif;
transition: 1s cubic-bezier(.2,.6,.8,.8);
width: 400px;
}