This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.login-body { | |
overflow: hidden; | |
margin: 0 auto; | |
position: relative; | |
height: 100%; | |
} | |
.login-body .login-image { | |
height: calc(100% - 380px); | |
background: url("../../layout/images/login/bg-login.jpg") no-repeat; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Como adicionar dinamicamente colspan a diferentes <th> na tabela (ANGULAR 4 +) | |
No TS crie um array e passe as seguintes informações. | |
array: any = [ | |
{colspan:1,name:'NOME TH 1'}, | |
{colspan:3,name:'NOME TH 2'}.....] | |
Em seu código HTML: | |
<tr> |