Pure.CSS - 环境设置



使用 Pure 的方法有两种 -

  • 本地安装 - 可以在本地计算机上下载 pure.css 文件,并将其包含在 HTML 代码中。

  • 基于 CDN 的版本 - 可以直接从内容分发网络 (CDN) 将 pure.css 文件包含在 HTML 代码中。

本地安装

示例

可以按照以下方式在 HTML 文件中包含 css 文件 -

<html>
   <head>
      <title>The PURE.CSS Example</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel="stylesheet" href="pure-min.css">
	  
      <style>
         .grids-example {
            background: rgb(250, 250, 250);
            margin: 2em auto;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;			
            font-family: Consolas, 'Liberation Mono', Courier, monospace;
            text-align: center;					
         }
      </style>
	  
   </head>
  
  
  <body>
      <div class="grids-example">
         <div class="pure-g">
            <div class="pure-u-1-3"><p>First Column</p></div>
            <div class="pure-u-1-3"><p>Second Column</p></div>
            <div class="pure-u-1-3"><p>Third Column</p></div>
         </div>
      </div>
   </body>
</html>

会生成以下结果 -

基于 CDN 的版本

可以直接从内容分发网络 (CDN) 将 pure.css 文件包含在 HTML 代码中。yui.yahooapis.com 提供最新版本的这种内容。

在整个本教程中,我们将使用 yui.yahooapis.com CDN 版本的库。

示例

现在,让我们使用来自 PureCSS.io CDN 的 pure.css 重写上述示例。

<html>
   <head>
      <title>The PURE.CSS Example</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://yui.yahooapis.com/pure/0.6.0/pure-min.css">
	  
      <style>
         .grids-example {
            background: rgb(250, 250, 250);
            margin: 2em auto;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;			
            font-family: Consolas, 'Liberation Mono', Courier, monospace;
            text-align: center;					
         }
      </style>
   </head>
  
   <body>
      <div class = "grids-example">
         <div class = "pure-g">
            <div class = "pure-u-1-3"><p>First Column</p></div>
            <div class = "pure-u-1-3"><p>Second Column</p></div>
            <div class = "pure-u-1-3"><p>Third Column</p></div>
         </div>
      </div>
   </body>
</html>

会生成以下结果 -

广告