html - bootstrap not getting dismissable warning -


i'm new bootstrap. tutorials i've seen

<div  class="alert alert-warning" style="margin-left: 480px;margin-top: 20px;width: 500px;">  warning message here  </div> 

this should give me dismissable warning message.

but i'm getting warning message, not dismissable.

is there wrong code?

you need use -

<div role="alert" class="alert alert-warning alert-dismissible fade in"  style="margin-left: 480px;margin-top: 20px;width: 500px;">    <button aria-label="close" data-dismiss="alert" class="close" type="button"><span aria-hidden="true">×</span></button>    <strong>holy guacamole!</strong>  warning message here  </div> 

see more details


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -