Coloring
优质
小牛编辑
134浏览
2023-12-01
描述 (Description)
您可以使用.secondary , .primary , .success , .warning或.alert类为标注.alert 。
例子 (Example)
以下示例演示了在Foundation中使用coloring -
<!doctype html>
<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>Coloring Callout</title>
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/css/foundation.css">
<script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/foundation.min.js"></script>
</head>
<body>
<h2>Coloring Callout Example</h2>
<div class = "callout secondary">
<h5>secondary callout</h5>
<a href = "#">Foundation is a responsive front-end framework.</a>
</div>
<div class = "callout success">
<h5>success callout</h5>
<a href = "#">Foundation is a responsive front-end framework.</a>
</div>
<div class = "callout warning">
<h5>warning callout</h5>
<a href = "#">Foundation is a responsive front-end framework.</a>
</div>
<div class = "callout alert">
<h5>alert callout</h5>
<a href = "#">Foundation is a responsive front-end framework.</a>
</div>
<div class = "callout primary">
<h5>primary callout</h5>
<a href = "#">Foundation is a responsive front-end framework.</a>
</div>
</body>
</html>