
- Foundation 常規
- Foundation - 全域性樣式
- Foundation - Sass
- Foundation - JavaScript
- Foundation - JavaScript 工具
- Foundation - 媒體查詢
- Foundation - 柵格
- Foundation - Flex Grid
- Foundation - 表單
- Foundation - 可見性類
- Foundation - 基本排版
- Foundation - 排版幫助器
- Foundation - 基本控制元件
- Foundation - 導航
- Foundation - 容器
- Foundation - 媒體
- Foundation - 外掛
- Foundation SASS
- Foundation - Sass 函式
- Foundation - Sass Mixins
- Foundation 庫
- Foundation - Motion UI
- Foundation 實用資源
- Foundation - 快速指南
- Foundation - 實用資源
- Foundation - 討論
Foundation - 引言
描述
它與普通文字相比是一段明顯較大的文字塊,可用於廣告或其他描述性文字。
示例
以下示例演示了引言在 Foundation 中的用法。
<!doctype html> <html> <head> <title>Lead Paragraph</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.5.1/dist/css/foundation.min.css" crossorigin="anonymous"> <!-- Compressed JavaScript --> <script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.5.1/dist/js/foundation.min.js" crossorigin="anonymous"></script> </head> <body> <p class = "lead">This is the paragraph with <em>lead</em> class. Foundation is one of the advanced front-end framework for designing beautiful responsive websites. It works on all types of devices and provides you with HTML, CSS and JavaScript plugins.</p> <p>This is the normal paragraph. Foundation is one of the advanced front-end framework for designing beautiful responsive websites. It works on all types of devices and provides you with HTML, CSS and JavaScript plugins.</p> <script> $(document).ready(function() { $(document).foundation(); }) </script> </body> </html>
輸出
讓我們執行以下步驟,瞭解以上給定的程式碼是如何工作的 −
將上述給定的 html 程式碼儲存到typography_lead_paragraph.html檔案。
在瀏覽器中開啟此 HTML 檔案,輸出如下所示。
foundation_typography_helpers.htm
廣告