css - Correction to ng2-opd-popup -


when add form window arranged this:

enter image description here

but need:

enter image description here

in file: popup.component.html:

<div id="ng2-opd-popup-main"      *ngif="visible" [ngclass]="mainclass" [ngstyle]="mainstyle">     <div class="row">         <div style="display: inline-block;width:100%">            <div id="ng2-opd-popup-well"  [ngstyle]="wellstyle"                 class="ng2-opd-popup-well ng2-opd-popup-well-sm">              {{popupservice.options.header}}            </div>         </div>     <div style="margin:20px;">         <ng-content></ng-content>         <div *ngif="popupservice.options.showbuttons"               style="margin-bottom:20px;margin-top:20px;float: right">             <button id="cancelbtn" [ngclass]="cancelbtnstyle"                     type="reset" (click)="confirmno()">               {{popupservice.options.canclebtncontent}}             </button>             <button id="confirmbtn" [ngclass]="confirmbtnstyle"                      (click)="confirmyes()">               {{popupservice.options.confirmbtncontent}}             </button>         </div>     </div>  </div> </div> 

when change line <div style="margin:20px;">on <div style="margin:20px; width:100%"> nothing happens application not respond code changes. problem?


Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -