Skip to content

Instantly share code, notes, and snippets.

@Fischaela
Last active November 20, 2017 12:29
Show Gist options
  • Save Fischaela/d4353a96504d8f7ee2f50a5459009746 to your computer and use it in GitHub Desktop.
Save Fischaela/d4353a96504d8f7ee2f50a5459009746 to your computer and use it in GitHub Desktop.
GirlsCourse 0.0.0 Retrospective

HTML

HTML Elements

  • <a href="https://geildanke.com">
  • <article class="className">
  • <button class="button">
  • <div>
  • <h1>, <h2>, ...
  • <img src="https://geildanke.com/images/michaela.jpg">
  • <nav>
  • <p>
  • <section>
  • <ul>
  • <ol>
  • <li>

Example

<ol>
    <li></li>
    <li></li>
</ol>

HTML Element Attributes

  • class=""
  • id=""
  • href=""
  • src=""

Selectors

  • element
  • .[class]
  • #[idName]
  • [selector]:hover

Example

.button {
    background-color: #FF0000;
}

CSS

CSS Text Properties

  • color
  • font-family
  • font-weight
  • text-align
  • text-decoration
  • text-transform

CSS Style Properties

  • background-color
  • border
  • border-radius
  • box-shadow
  • opacity

CSS Layout Properties

  • display
  • margin
  • padding
  • position
  • width
  • min-width
  • max-width
  • height
  • min-height
  • max-height
  • transform
  • z-index

Flexbox Properties

  • align-items
  • flex-direction
  • flex-flow
  • flex-wrap

CSS Animation Properties

  • transition

CSS Misc Properties

  • cursor

JS

  • const variableName = {};
  • document.getElementById('idName');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment