Help please mark the page with standard header + content + footer
Here is my attempt: https://jsfiddle.net/zlodiak/wr70hscu/1/ . It is bad because the following rule is used for header, footer:
.icons_item:nth-child(6), .icons_item:nth-child(1){ width: 100%; }
I would like to use a clean flexbox
header
,footer
instead of.icons_item:nth-child(6), .icons_item:nth-child(1)
and write thewidth: 100%;
orflex-basis: 100%;
? - HamSter