CSS: equal height columns

Flexbox was born for this. This is how I approached it on MaterializeCSS. .flex { display: flex; flex-wrap: wrap; } and on the parent row add <div class=”row flex”> <div class=”col”></div> <div class=”col”></div> </div>

How to host material icons offline?

Method 2. Self hosting Developer Guide Download the latest release from github (assets: zip file), unzip, and copy the font folder, containing the material design icons files, into your local project — https://github.com/google/material-design-icons/releases You only need to use the font folder from the archive: it contains the icons fonts in the different formats (for multiple … Read more