Last active
April 6, 2018 09:24
-
-
Save mhauken/9363404 to your computer and use it in GitHub Desktop.
Useful HTML snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
­ = Soft hyphen. To break text where you want | |
--> | |
Onelongword­thatwewant­tobreak |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.classname { | |
display: grid; | |
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); | |
grid-column-gap: 24px; | |
grid-row-gap: 24px; | |
} | |
/*Responsiv css-grid som lager antallet kolonner som du har children, sørger for at de brekker selv på små skjermer og aldri er mindre enn f.eks 320px*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Lorem ipsum dolor sit amet, consectetur adip*isicing elit, sed do eiusmod *tempor incididunt ut labore et dolore magna aliqua. | |
<!--for optimal linjelengde bør stjernene komme på én linje..--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment