upgraded yui to 2.2.2 and yui-ext to 1.0.1a
This commit is contained in:
parent
4d9af2c691
commit
547ced6500
1992 changed files with 645731 additions and 0 deletions
69
www/extras/yui/examples/reset/example_default.html
Normal file
69
www/extras/yui/examples/reset/example_default.html
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>YUI Library - Reset - Example: Default Rendering</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../build/reset-fonts-grids/reset-fonts-grids.css">
|
||||
<style>
|
||||
body {text-align:left;}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
This is the root body node.
|
||||
|
||||
<div>this is inside a div</div>
|
||||
|
||||
<dl>
|
||||
<dt>this is a definition term</dt>
|
||||
<dd>definition description</dd>
|
||||
</dl>
|
||||
|
||||
<ul>
|
||||
<li>this is an LI inside a UL</li>
|
||||
</ul>
|
||||
|
||||
<ol>
|
||||
<li>this is an LI inside an OL</li>
|
||||
</ol>
|
||||
|
||||
<h1>This is a H1</h1>
|
||||
<h2>This is a H2</h2>
|
||||
<h3>This is a H3</h3>
|
||||
<h4>This is a H4</h4>
|
||||
<h5>This is a H5</h5>
|
||||
<h6>This is a H6</h6>
|
||||
|
||||
<pre>This is pre content</pre>
|
||||
|
||||
<form>
|
||||
<fieldset>
|
||||
<select><option>These are form elements</option></select>
|
||||
<textarea>These are form elements</textarea>
|
||||
<input type="button" value="These are form elements">
|
||||
<input type="radio" id="foo" name="foo"><label for="foo">These are form elements</label>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<p>This is a paragraph.</p>
|
||||
|
||||
<blockquote>This is a blockquote.</blockquote>
|
||||
|
||||
<table border="1">
|
||||
<caption>This is a caption</caption><tr><th>this is a table head (th)</th><td>this is a table data cell (td)</td></tr></table>
|
||||
|
||||
<address>This is an address</address>
|
||||
<cite>This is a cite</cite>
|
||||
<code>This is a code</code>
|
||||
<dfn>This is a dfn</dfn>
|
||||
<em>This is an em</em>
|
||||
<strong>This is a strong</strong>
|
||||
<var>This is a var</var>
|
||||
<abbr>This is a abbr</abbr>
|
||||
<q>This is a q.</q>
|
||||
<acronym>This is a acronym</acronym>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
47
www/extras/yui/examples/reset/index.html
Normal file
47
www/extras/yui/examples/reset/index.html
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<title>YUI Library - Reset - Examples</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../build/reset-fonts-grids/reset-fonts-grids.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../docs/assets/examples.css">
|
||||
<style>
|
||||
#hd,#bd {margin-bottom:1em;}
|
||||
p {margin-bottom:1em;}
|
||||
ul,ol {margin:0 40px;}
|
||||
ol, ol li {list-style-type:decimal;}
|
||||
h2 {font-size:122%;font-weight:bold;margin-bottom:10px;}
|
||||
ul {margin-bottom:10px;}
|
||||
p em {font-style:italic;}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="doc3" class="yui-t7">
|
||||
<div id="hd">
|
||||
<img src="../../docs/assets/logo.gif" alt="Yahoo!">
|
||||
<h1>YUI Library - Reset - Examples</h1>
|
||||
</div>
|
||||
<div id="bd">
|
||||
<div id="yui-main">
|
||||
<div class="yui-b">
|
||||
|
||||
<h2>Examples of Using Reset</h2>
|
||||
|
||||
<p>YUI Reset creates a level playing field upon which to explicitly declare your intentions by normalizing the default rendering of all HTML elements. It sets margin, padding, and border to 0; font sizes to YUI Font's default; italic and bold styles to normal; list-style to none, etc.</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="example_default.html">Verify the default rendering</a>.</li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="ft"></div>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue