惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
量子位
爱范儿
爱范儿
L
LangChain Blog
Vercel News
Vercel News
A
About on SuperTechFans
腾讯CDC
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
V
Visual Studio Blog
美团技术团队
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium

博客园 - 凬月

DIV+CSS中标签dl dt dd常用的用法 使用gulp构建一个项目 (转)利用CAS算法实现通用线程安全状态机 棋牌游戏服务器架构设计 STM32F103引脚功能定义 STM32的型号的命名规则 关闭jtag保留swd 微信支付----维权接口开发!(转掌眼) 微信支付--入门篇(转掌眼) LoadRunner培训初级教程 [转]在windows环境中使用varnish squid-nginx 基本配置 redis windows下的环境搭建 显示数据库中所有表的记录数 删除MSSQL数据库中所有表 一个带标号的CSS文章列表写法 CSS图片列表 Ubuntu 13.10 64位 无法 安装 ia32-libs 解决办法 [转]编译Android源代码常见错误解决办法
YUI3 CSS
凬月 · 2015-01-17 · via 博客园 - 凬月
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"   
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>YUI3 CSS</title>
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?3.3.0/build/cssreset/reset-min.css&3.3.0/build/cssfonts/fonts-min.css&3.3.0/build/cssgrids/grids-min.css">
<style type="text/css">
body {
    margin: auto; /* center in viewport */
    width: 1200px;
}
#hd h1 {
    font: bold 180% arial;
    padding: 1em;
}
#ft {
    background: #999;
    font:80% verdana;
    padding: 1em;
    text-align: center;
}
</style>
</head>

<body>
<div>
  <div id="hd">
    <h1>Page Layout Example</h1>
  </div>
  <div class="yui3-g">
    <div class="yui3-u-1-2" style="background-color:#333;min-height:350px;"><!-- header --></div>
    <div class="yui3-u-1-2">
      <div class="yui3-g" style="background-color:#633;min-height:150px;">
        <div class="yui3-u-3-4" style="background-color:#fff;min-height:50px;">
          <div class="yui3-g" style="background-color:#633;min-height:150px;">
            <div class="yui3-u-1-4" style="background-color:#093;min-height:100px;">1</div>
            <div class="yui3-u-1-4" style="background-color:#F6F;min-height:100px;">2</div>
            <div class="yui3-u-1-4" style="background-color:#093;min-height:100px;">3</div>
            <div class="yui3-u-1-4" style="background-color:#F6F;min-height:100px;">4</div>
          </div>
        </div>
        <div class="yui3-u-1-4" style="background-color:#F6F;min-height:100px;">5</div>
      </div>
    </div>
  </div>
  <div id="ft">
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed arcu arcu, volutpat vel volutpat vel, varius ac odio.</p>
  </div>
</div>
</body>
</html>

posted @ 2015-01-17 14:43  凬月  阅读(276)  评论()    收藏  举报