How to set div width using ng-style

后端 未结 2 1387
时光取名叫无心
时光取名叫无心 2020-12-07 18:00

I am trying to set the div width dynamically using ng-style but it is not applying the style. Here is the code:

2条回答
  •  攒了一身酷
    2020-12-07 18:49

    ngStyle accepts a map:

    $scope.myStyle = {
        "width" : "900px",
        "background" : "red"
    };
    

    Fiddle

提交回复
热议问题