How To Create Nested Grid Using Angular 8
Introduction : In this article we will learn how we create nested grid in angular 8. How it will work ? Here we are using the grid list to separate my page into small sections and in each section and we want to place a different component and one of these components is another smaller grid. Prerequisite Basic knowledge of Angular Visual Studio Code must be installed Angular CLI must be installed Node JS must be installed FRONT END Step 1:Lets create a angular project using following npm command ng new nestedGrid Step 2: Open the newly created project in visual studio code and install bootstrap in this project npm install bootstrap --save Now open styles.css file and add Bootstrap file reference.To add reference in styles.css file add this line. @import '~bootstrap/dist/css/bootstrap.min.css' ; ...