How to dynamically add div containers in angular?.
Please look at my html code. Whenever I will click "Add" button, one new div should add left side of that button. Dynamically it should add multiple containers based on how any clicks. Everything should add in horizontal wise. If it is more containers by default it should add scroll and it be in uniform. Can anyone please help me to do this in angular 6.
#content{
width:100%;
height:90px;
border:1px solid black;
}
#contentInside{
width:100px;
height:70px;
margin:7px;
border:1px solid black;
display:inline-flex;
}
<div id="content">
<div id="contentInside">
</div>
<button (click)="add()">Add</button>
</div>
I am new in angular. Please anyone help me to do this.