Powiedzmy, że mam komponent Angular2
//home.component.ts
import { Component } from 'angular2/core';
@Component({
selector: "home",
templateUrl: "app/components/templates/home.component.html",
styleUrls: ["app/components/styles/home.component.css"]
})
export class HomeComponent {
public width: Number;
public height: Number;
}
Plik html szablonu dla tego komponentu
//home.component.html
<div class="home-component">Some stuff in this div</div>
I na koniec plik css dla tego komponentu
//home.component.css
.home-component{
background-color: red;
width: 50px;
height: 50px;
}
Jak widać, w klasie są 2 właściwości width
i height
. Chciałbym, aby style css dla szerokości i wysokości odpowiadały wartościom właściwości width i height, a kiedy właściwości się zaktualizowały, szerokość i wysokość aktualizacji div. Jaki jest właściwy sposób osiągnięcia tego?