Please enable JavaScript.
Coggle requires JavaScript to display documents.
Full Stack Developer - Coggle Diagram
Full Stack Developer
Learning
Codecademy
HTML5
-
Semantic
section
A section is a thematic grouping of content, typically with a heading.
A home page could normally be split into sections for introduction, content, and contact information.
article
An article should make sense on its own, and it should be possible to read it independently from the rest of the web site.
-
-
footer
-
A footer typically contains the author of the document, copyright information, links to terms of use, contact information, etc.
-
-
-
CSS3
Responsive design
flex containers
display: flex or inline-flex -> This is a block like display:block, inline is the same thing than inline-block
-
-
-
flex items
-
-
-
flex property
Gather all properties above in one element, order : flex-grow, flex-shrink, and flex-basis
flex-wrap
-
wrap-reverse
the same functionality as wrap, but the order of rows within a flex container is reversed (for example, in a 2-row flexbox, the first row from a wrap container will become the second
nowrap
prevents items from wrapping; this is the default value and is only necessary to override a wrap value set by a different CSS rule.
flex-flow
Like the flex property, the flex-flow property is used to declare both the flex-wrap and flex-direction properties in one line.
-
-