2

I want my Alert to appear on the right hand corner. How would I do that using bootstrap?. Currently my HTML look like this.

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

I am using ui-bootstrap for angular and twitter.

2

1 Answer 1

7

for someone like me :)

 .notification{
      position: fixed;
      top: 10em;
      right: 10em;
    }
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.