美文网首页
Bootstrap 4 Alert 学习笔记

Bootstrap 4 Alert 学习笔记

作者: JCHN | 来源:发表于2018-04-28 17:49 被阅读17次

1. Basic usage of alert

Adding alert component by applying .alertclass with following one of 8 available classse for 8 types altert. And adding "role" attribute :

    alert-primary
    alert-secondary
    alert-success
    alert-danger
    alert-warning
    alert-info
    alert-light
    alert-dark

Example:

      <div class="alert alert-primary" role="alert">
          This is a primary alert—check it out!
      </div>

2. Using links within an alert

Adding .alert-linkclass to a <a>element obtains a matching colored links within any alert:
Example:

<div class="alert alert-primary" role="alert">
  This is a primary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>

3. Dismissing an alert

Enable dismissing for an alert by adding class .alert-dismissible .fade .show . .fade and.showclasses animate alerts when dismissing them. And then place a dismiss button with class.close and data-dismiss="alert" aria-label="Close" attributes. A <span> should be wrapped by <button>. <span>element is essential to show a cross sign at the top-right cornor of alert.
Example:

<div class="alert alert-warning alert-dismissible fade show" role="alert">
  <strong>Holy guacamole!</strong> You should check in on some of those fields below.
  <button type="button" class="close" data-dismiss="alert" aria-label="Close">
    <span aria-hidden="true">&times;</span>
  </button>
</div>

相关文章

  • Bootstrap 4 Alert 学习笔记

    1. Basic usage of alert Adding alert component by applyi...

  • Bootstrap4 学习笔记五

    应用BootStrap实现提示框,可以使用.alert类, 后面加上.alert-success,.alert-i...

  • 第九谈:警告提示框

    本节课我们来开始学习 Bootstrap 的警告框样式以及组件的使用。 一.警告框样式 使用.alert 设置警告...

  • Bootstrap学习资源

    bootstrap笔记总结 Bootstrap入门笔记之(三)栅格系统 我的Bootstrap笔记,常用类名知...

  • Bootstrap4 学习笔记一

    Bootstrap 是全球最受欢迎的前端组件库,用于开发响应式布局、移动设备优先的 WEB 项目。 Bootstr...

  • Bootstrap4 学习笔记四

    Bootstrap 4 默认的 font-size 为 16px, line-height 为 1.5。 默认的 ...

  • Bootstrap4 学习笔记三

    Bootstrap 4 网格系统有以下 5 个类: .col- 针对所有设备 .col-sm- 平板 - 屏幕宽度...

  • Bootstrap4 学习笔记二

    可以去官网下载 Bootstrap4 资源库。 注:此外还可以通过包的管理工具 npm、 gem、 compose...

  • bootstrap学习笔记

    一.bootstrap的集成与引入 bootsrap中文网bootstrap官网 集成方法一 下载bootstra...

  • bootstrap学习笔记

    bootsrap的两种使用方式:1)、官网下载bootsrap压缩包:http://v3.bootcss.com/...

网友评论

      本文标题:Bootstrap 4 Alert 学习笔记

      本文链接:https://www.haomeiwen.com/subject/wcaglftx.html