Zurb foundation 警告消息基金会6

Zurb foundation 警告消息基金会6,zurb-foundation,warnings,message,Zurb Foundation,Warnings,Message,我想使用Foundation6发出警告消息 如果可能的话,类似于引导消息: 在基础文档中,我们有: 但这对我不起作用,就像我错过了一个导入(类不起作用) 有什么想法吗 编辑 我的代码很简单: <!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" cont

我想使用Foundation6发出警告消息

如果可能的话,类似于引导消息:

在基础文档中,我们有:

但这对我不起作用,就像我错过了一个导入(类不起作用)

有什么想法吗

编辑

我的代码很简单:

<!doctype html>
<html class="no-js" lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Foundation for Sites</title>
    <link rel="stylesheet" href="css/my-css.css">
    <link rel="stylesheet" href="css/app.css">
    <link rel="stylesheet" href="css/icons/foundation-icons.css">
  </head>
  <body ng-app="app">
      <div class="row">
          <div class="columns">
              <div class="text-center">
                  <div data-alert class="alert-box warning round">
                      This is a warning alert that is rounded.
                      <a href="#" class="close">&times;</a>
                  </div>

遗址基金会
这是一个四舍五入的警告警报。

App.CSS是小型化的样式表。

< P>您查看了基础6文档吗?警告消息在基础6中被称为标注,并且将类<代码>标注/代码>添加到div中,与另一个类有关,取决于您要执行的警告类型。对于警告,您可以使用:

<div class="callout warning">
  <h5>This is a warning callout</h5>
</div>

这是一个警告说明

查看。

你有任何代码吗?我编辑了我的博文是的,我查看了文档,但没有在正确的位置。。非常感谢。