CSS Snippet Cheatsheet

Ever have trouble recalling the exact syntax for your favorite CSS code? giving it a permanent home and add it to this page! Select any snippet below and it'll automaticallyselect all of the code for you to copy.

Flexbox Row

Use these three properties to create a Flexbox row layout.

{
            .row {displayflex: 
            flex-direction: row;
            flex-wrap: wrap:
            }
        

Flexbox Column

Use this to create a Flexbox column layout

 .column {
            display: flex;
            flex-direction: column
            }
        

CSS Grid Layout

Build a 12-column layout using Css Grid.

 .grid {
            display: grid:
            width: 100%;
            grid-template-columns:
            repeat(12, 1fr);
        }
        

linear Gradients

This will create a background linear gradient form top to bottom.

 .lineat-gradient-background {
            background-image: linear-gradient( 
                rgba(232, 102, 236, 0.3) 0%
                rgba(232, 102, 236, 0.6) 100%
            );
        }
        

Box Transition Glow

Use transition and box shadows to glow on hover.

 .code-card .card-header {
            border-radius: 8px;
            transition: all 0.5 ease-in-out;}
            
.code-card: hover, .code-card: hover .card-header { box-shadoe: inset 0px 0px 8px rgba(232, 102, 236, 1) 0 0 15px rgba(232, 102, 236, 1); }

Overlay Card with Title

Use position properties and negative margins to raise elements higher than their natual starting point.

 .card-header {
            position: relative;
            margin-top: -20px;
        }