Demo Code Angular1
Demo Code Angular1
ts 27/03/2024
------------------
export class AppComponent {
.special1 {
background-color: blue;
color: white;
}
*************************************************
2-4-2024 app.component.html
================
Name: <input type="text">
<!--<button disabled="{{isdisabled}}">Submit</button>-->
<input type="text" [hidden]=ishidden /><!--Property binding-->
<!--<button [disabled]=isdisabled>Submit</button>--><!--Property binding-->
<img [src]=path alt="" /><!--Property binding-->
<button>Submit</button>
app.component.ts
=================
export class AppComponent {
app.component.ts
=================
export class AppComponent {
app.component.css
====================
.active {
background-color: blue;
color: white;
}
.inactive {
background-color: grey;
color: white;
}
.c1
{
border: 5px solid green;
}