使用ui-bootstrap,Angularjs的bootstrap警告显示在右上角

时间:2014-10-07 04:06:54

标签: css angularjs twitter-bootstrap angular-ui-bootstrap

问题,

我希望我的警报显示在右上角。我怎么用bootstrap做到这一点?目前我的HTML看起来像这样。

  <div class="notification">
        <alert ng-repeat="alert in alerts" type="{{alert.type}}"  close="alert.close()">{{alert.msg}}</alert>
      </div>

我正在使用ui-bootstrap进行角度和推特。

1 个答案:

答案 0 :(得分:6)

像我这样的人:)

 .notification{
      position: fixed;
      top: 10em;
      right: 10em;
    }