Tôi đang cố gắng đặt động chiều rộng div bằng cách sử dụng ng-style
nhưng nó không áp dụng kiểu. Đây là mã:
<div style="width: 100%;" id="container_fform" ng-controller="custController">
<div style="width: 250px;overflow: scroll;">
<div ng-style="myStyle"> </div>
</div>
</div>
Bộ điều khiển:
var MyApp = angular.module('MyApp', []);
var custController = MyApp.controller('custController', function ($scope) {
$scope.myStyle="width:'900px';background:red";
});
Tôi đang thiếu gì?