
- W3.CSS 教程
- W3.CSS - 主頁
- W3.CSS - 概述
- W3.CSS - 環境設定
- W3.CSS - 容器
- W3.CSS - 程式碼著色
- W3.CSS - 卡片
- W3.CSS - 響應式設計
- W3.CSS - 網格
- W3.CSS - 表單
- W3.CSS - 按鈕
- W3.CSS - 提示
- W3.CSS - 模態對話方塊
- W3.CSS - 表格
- W3.CSS - 列表
- W3.CSS - 影像
- W3.CSS - 圖示
- W3.CSS - 顏色
- W3.CSS - 導航
- W3.CSS - 實用工具
- W3.CSS 有用資源
- W3.CSS - 快速指南
- W3.CSS - 有用資源
- W3.CSS - 討論
W3.CSS - 實用工具
W3.CSS 有一些實用工具,非常有助於滿足日常設計需求。
顏色實用工具 - 示例:w3-red、w3-yellow
填充實用工具 - 示例:w3-padding-jumbo、w3-padding-16
邊距實用工具 - 示例:w3-margin-8、w3-margin-64
邊框實用工具 - 示例:w3-border-left、w3-border-right
大小實用工具 - 示例:w3-tiny、w3-small
圓形實用工具 - 示例:w3-circle
居中實用工具 - 示例:w3-center
示例
w3css_utilities.htm
<html> <head> <title>The W3.CSS Utilities</title> <meta name = "viewport" content = "width=device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://w3schools.tw/lib/w3.css"> </head> <body class = "w3-container"> <h2>W3.CSS Utilities</h2> <hr/> <h3>Color Utilities Demo</h3> <div class = "w3-container w3-red"> <p>The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionality.</p> </div> <div class = "w3-container w3-green"> <p>The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.</p> </div> <h3>Padding Utilities Demo</h3> <div class = "w3-container w3-red w3-padding-jumbo"> <p>The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionality.</p> </div> <div class = "w3-container w3-green w3-padding-16"> <p>The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.</p> </div> <h3>Margin Utilities Demo</h3> <div class = "w3-container w3-margin-64"> <p>The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionality.</p> </div> <div class = "w3-container w3-margin-8"> <p>The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.</p> </div> <h3>Border Utilities Demo</h3> <div class = "w3-container w3-red w3-border-left w3-border-right"> <p>The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionality.</p> </div> <div class = "w3-container w3-green w3-border"> <p>The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.</p> </div> <h3>Size Utilities Demo</h3> <div class = "w3-container"> <p class = "w3-small">Using w3-small font.</p> <p>Using Default (medium).</p> <p class = "w3-large">Using w3-large font.</p> <p class = "w3-xlarge">Using w3-xlarge font.</p> </div> <h3>Circle Utility Demo</h3> <div class = "w3-container"> <img src = "html5-mini-logo.jpg" alt = "html5" class = "w3-circle"> </div> <h3>Center Utility Demo</h3> <div class = "w3-container w3-center w3-black w3-card-2"> <img src = "html5-mini-logo.jpg" class = "w3-circle" alt = "html5"> </div> </body> </html>
結果
驗證結果。
廣告