10 Star 20 Fork 4

qietuwang/slicy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
base.html 39.54 KB
一键复制 编辑 原始数据 按行查看 历史
qietuwang 提交于 2016-03-24 17:30 . new file
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>基础CSS - Slicy</title>
<meta name="keywords" content="Slicy,中文css框架,css框架,开源css框架,css框架下载"/>
<meta name="description" content="Slicy是一个开源中文 (X)HTML/CSS 框架 ,它的目的是减少你的css开发时间。它提供一个可靠的css基础去创建你的项目,能够用于网站的快速设计,通过重设和重建浏览器标准,可以让每个网站防 止枯燥的跨浏览器兼容性测试。"/>
<meta name="author" content="[email protected]">
<link rel="stylesheet" href="assets/css/slicy.css">
<link rel="stylesheet" href="css/prettify.css" >
<link rel="stylesheet" href="css/docs.css">
<!--[if ie 6]>
<link rel="stylesheet" href="assets/css/ie6.css">
<![endif]-->
<!--[if lt IE 9]>
<script src="assets/js/html5.js"></script>
<![endif]-->
<script src="assets/js/jquery-1.7.1.min.js"></script>
<script src="assets/js/slicy.js"></script>
<script src="js/prettify.js"></script>
<script src="js/docs.js"></script>
</head>
<body>
<div class="naver">
<div class="wrapper">
<div class="brand"> <a href="./index.html"><img src="imgs/logo.png" width="80"/></a> </div>
<div class="module">
<ul>
<li> <a href="slicy.html">概述</a> </li>
<li> <a href="grid.html">12列栅格</a> </li>
<li class="selected"> <a href="base.html" class="selected">基础CSS</a> </li>
<li> <a href="widgets.html">组件</a> </li>
<li> <a href="javascript.html">JS插件</a> </li>
</ul>
</div>
<div class="sub"> <a href="http://www.qietu.com/?slicy">切图网</a> </div>
</div>
</div>
<div class="heading">
<div class="wrapper">
<h1>基础CSS</h1>
<h2>通过重置一些不兼容的css代码,能够避免一些不必要的跨浏览器兼容问题,<br>定义了一些常用的css
类,能够用于快速开发,也能统一网页的风格。</h2>
</div>
</div>
<div class="wrapper">
<div class="row">
<div class="col3">
<ul class="sidebar nojs">
<li class="selected">
<a href="#typography">排版</a>
<ul>
<li class="selected"><a href="#paragraph">段落排版</a></li>
<li><a href="#strong">加粗</a></li>
<li><a href="#underline">下划线</a></li>
<li><a href="#italic">斜体</a></li>
<li><a href="#line-through">删除线</a></li>
<li><a href="#sup">上标和下标</a></li>
<li><a href="#big">文字加大,缩小</a></li>
<li><a href="#blockquote">引用</a></li>
<li><a href="#abbr">标签</a></li>
<li><a href="#list">列表</a></li>
</ul>
</li>
<li><a href="#code">代码</a></li>
<li><a href="#table">表格</a></li>
<li><a href="#form">表单</a></li>
<li><a href="#button">按钮</a></li>
<li><a href="#other">其他</a>
<ul>
<li><a href="#text">文字</a>
<li><a href="#postion">位置</a>
<li><a href="#background">背景</a>
<li><a href="#border">边框</a>
<li><a href="#image">图片</a>
</ul>
</li>
</ul>
</div>
<div class="col9">
<h1 id="typography">排版<small></small></h1>
<h4>默认设置,段落,标题,文本,对字体颜色,锚文本的下划线,颜色,字体做了重写,均采用了最符合中国网站体验的12号字体和 Verdana, Arial, Helvetica, sans-serif 字体。行距22px。这些重写参考了,盛大,腾讯,百度,新浪等众多网站对css重写的选择。</h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<p>采用了符合中国人阅读习惯的font-size:12px像素字体,行距line-height:22px像素。字体font-family:Verdana,Arial,Helvetica,sans-serif, body背景background:white;</p>
<p>级联样式表(Cascading Style Sheet)简称“CSS”,通常又称为“风格样式表(Style Sheet)”,它是用来进行网页风格设计的。比如,如果想让链接字未点击时是蓝色的,当鼠标移上去后字变成红色的且有下划线,这就是一种风格。通过设立样式表,可以统一地控制HTML中各标志的显示属性。</p>
<!--//demo-->
</div>
<div class="doc-foot">
<pre class="prettyprint">&lt;p&gt;采用了符合中国人阅读习惯的font-size:12px像素字体,行距line-height:22px像素。字体font-family:Verdana,Arial,Helvetica,sans-serif, body背景background:white;&lt;/p&gt;</pre>
</div>
</div>
<h2 id="paragraph">段落排版</h2>
<h4>h1~h6标签同strong标签一样在seo中具有提高文字权重的效果</h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<h1>我是h1标签,在seo中我拥有最高的权重</h1>
<h2>我是h2标签,在seo中我拥有仅次于h1标签的权重</h2>
<h3>我是h3标签,在seo中我拥有仅次于h1,h2标签的权重</h3>
<h4>我是h4标签,在seo中我拥有仅次于h1,h2,h3标签的权重</h4>
<h5>我是h5标签,在seo中我拥有仅次于h1,h2,h3,h4标签的权重</h5>
<!--//demo-->
</div>
<div class="doc-foot">
<pre class="prettyprint linenums">&lt;h1&gt;我是h1标签,在seo中我拥有最高的权重&lt;/h1&gt;<br>&lt;h2&gt;我是h2标签,在seo中我拥有仅次于h1标签的权重&lt;/h2&gt;<br>&lt;h3&gt;我是h3标签,在seo中我拥有仅次于h1,h2标签的权重&lt;/h3&gt;<br>&lt;h4&gt;我是h4标签,在seo中我拥有仅次于h1,h2,h3标签的权重&lt;/h4&gt;<br>&lt;h5&gt;我是h5标签,在seo中我拥有仅次于h1,h2,h3,h4标签的权重&lt;/h5&gt;</pre>
</div>
</div>
<h2 id="strong">加粗</h2>
<h4>通过原生的&lt;strong&gt;&lt;/strong&gt;标签即可加粗,css加粗为font-weight:bold;&lt;strong&gt;...&lt;/strong&gt; &lt;b&gt;在w3c新标准中已经不建议使用了</h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<strong>这是一段加粗的文字</strong>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;strong&gt;这是一段加粗的文字&lt;/strong&gt;</pre>
</div>
</div>
<h2 id="underline">下划线</h2>
<h4>可以通过css的text-decoration:underline; 实现同样的效果</h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<u>这是一段下划线的文字</u>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;u&gt;这是一段下划线的文字&lt;/u&gt;</pre>
</div>
</div>
<h2 id="italic">斜体</h2>
<h4>可以通过css的font-style:italic;实现同样的效果,&lt;em&gt;...&lt;/em&gt; &lt;i&gt;在w3c新标准中已经不建议使用了</h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<em>这是一段斜体的文字</em>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;em&gt;这是一段斜体的文字&lt;/em&gt;</pre>
</div>
</div>
<h2 id="line-through">删除线</h2>
<h4>可以通过css的<code>text-decoration:line-through;</code>实现同样的效果</h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<del>这是一段删除线文字</del>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;del&gt;这是一段删除线文字&lt;/del&gt;</pre>
</div>
</div>
<h2 id="sup">上标和下标</h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<p>上标的文字在文字位于右上方显示<sup>这是一段上标文字</sup></p>
<p>下标的文字在文字位于右下方显示<sup>这是一段下标文字</sup></p>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;p&gt;上标的文字在文字位于右上方显示&lt;sup&gt;这是一段上标文字&lt;/sup&gt;&lt;/p&gt;<br>&lt;p&gt;下标的文字在文字位于右下方显示&lt;sup&gt;这是一段下标文字&lt;/sup&gt;&lt;/p&gt;</pre>
</div>
</div>
<h2 id="big">文字加大,缩小</h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<p><big>这是一段加大号文字</big></p>
<p><small>这是一段小号文字</small></p>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;p&gt;&lt;big&gt;这是一段加大号文字&lt;/big&gt;&lt;/p&gt;<br>&lt;p&gt;&lt;small&gt;这是一段小号文字&lt;/small&gt;&lt;/p&gt;</pre>
</div>
</div>
<h2 id="blockquote">引用</h2>
<h4>引用常常被用于评论中,在网页中非常常见,用<code>&lt;blockquote&gt;</code>就可以轻松实现一段美观的引用。</h4>
<div class="docs">
<div class="docs-head">xxxxxxx</div>
<div class="docs-body">
<!--demo-->
<blockquote>级联样式表(Cascading Style Sheet)简称“CSS”,通常又称为“风格样式表(Style Sheet)”,它是用来进行网页风格设计的。比如,如果想让链接字未点击时是蓝色的,当鼠标移上去后字变成红色的且有下划线,这就是一种风格。
<blockquote>通过设立样式表,可以统一地控制HTML中各标志的显示属性。级联样式表可以使人更能有效地控制网页外观。使用级联样式表,可以扩充精确指定网页元素位置,外观以及创建特殊效果的能力。</blockquote>
</blockquote>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;blockquote&gt;级联样式表(Cascading Style Sheet)简称“CSS”,通常又称为“风格样式表(Style Sheet)”,它是用来进行网页风格设计的。比如,如果想让链接字未点击时是蓝色的,当鼠标移上去后字变成红色的且有下划线,这就是一种风格。<br> &lt;blockquote&gt;通过设立样式表,可以统一地控制HTML中各标志的显示属性。级联样式表可以使人更能有效地控制网页外观。使用级联样式表,可以扩充精确指定网页元素位置,外观以及创建特殊效果的能力。&lt;/blockquote&gt;<br> &lt;/blockquote&gt;</pre>
</div>
</div>
<h2 id="abbr">abbr</h2>
<h4>标签常常用于关键字tag等地方,用<code>&lt;abbr&gt;</code>就可以轻松实现。</h4>
<div class="docs">
<div class="docs-head">xxxxxxx</div>
<div class="docs-body">
<!--demo-->
<abbr>css3</abbr> <abbr>html5</abbr>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;abbr&gt;css3&lt;/abbr&gt; &lt;abbr&gt;html5&lt;/abbr&gt;</pre>
</div>
</div>
<h2 id="list">列表</h2>
<h4>无序列表<code>ul</code></h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<ul>
<li>无序列表是这样表现的</li>
<li>无序列表是点点点</li>
<li>无序列表是没有罗马文字的</li>
</ul>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;ul&gt;<br> &lt;li&gt;无序列表是这样表现的&lt;/li&gt;<br> &lt;li&gt;无序列表是点点点&lt;/li&gt;<br> &lt;li&gt;无序列表是没有罗马文字的&lt;/li&gt;<br> &lt;/ul&gt;</pre>
</div>
</div>
<h2> 有序列表<code>ol</code></h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<ol>
<li>有序列表是这样表现的</li>
<li>有序列表不是是点点点</li>
<li>有序列表是有罗马文字的</li>
</ol>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;ol&gt;<br> &lt;li&gt;有序列表是这样表现的&lt;/li&gt;<br> &lt;li&gt;有序列表不是是点点点&lt;/li&gt;<br> &lt;li&gt;有序列表是有罗马文字的&lt;/li&gt;<br> &lt;/ol&gt;</pre>
</div>
</div>
<h2>没有样式的<code>&lt;ul class=&quot;unstyled&quot;&gt;</code></h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<ul class="unstyled">
<li>没有样式是这样表现的</li>
<li>没有样式的列表什么也没有</li>
<li>没有样式比较干净</li>
</ul>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;ul class=&quot;unstyled&quot;&gt;<br> &lt;li&gt;没有样式是这样表现的&lt;/li&gt;<br> &lt;li&gt;没有样式的列表什么也没有&lt;/li&gt;<br> &lt;li&gt;没有样式比较干净&lt;/li&gt;<br> &lt;/ul&gt;</pre>
</div>
</div>
<h2>圈圈<code>&lt;ul class=&quot;circle&quot;&gt;</code></h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<ul class="circle">
<li>圈圈列表是这样表现的</li>
<li>圈圈列表是圈圈的</li>
<li>圈圈列表跟点点很相似</li>
</ul>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;ul class=&quot;circle&quot;&gt;<br> &lt;li&gt;圈圈列表是这样表现的&lt;/li&gt;<br> &lt;li&gt;圈圈列表是圈圈的&lt;/li&gt;<br> &lt;li&gt;圈圈列表跟点点很相似&lt;/li&gt;<br> &lt;/ul&gt;</pre>
</div>
</div>
<h2>方块<code>&lt;ul class=&quot;square&quot;&gt;</code></h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<ul class="square">
<li>圈圈列表是这样表现的</li>
<li>圈圈列表是圈圈的</li>
<li>圈圈列表跟点点很相似</li>
</ul>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;ul class=&quot;square&quot;&gt;<br> &lt;li&gt;圈圈列表是这样表现的&lt;/li&gt;<br> &lt;li&gt;圈圈列表是圈圈的&lt;/li&gt;<br> &lt;li&gt;圈圈列表跟点点很相似&lt;/li&gt;<br> &lt;/ul&gt;</pre>
</div>
</div>
<h2>中文123<code>&lt;ul class=&quot;cjk&quot;&gt;</code></h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<ul class="cjk">
<li>中文123样式是这样表现的</li>
<li>中文123样式的列表什么也没有</li>
<li>中文123样式是用汉字一二三排序的</li>
</ul>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;ul class=&quot;cjk&quot;&gt;<br> &lt;li&gt;中文123样式是这样表现的&lt;/li&gt;<br> &lt;li&gt;中文123样式的列表什么也没有&lt;/li&gt;<br> &lt;li&gt;中文123样式是用汉字一二三排序的&lt;/li&gt;<br> &lt;/ul&gt;</pre>
</div>
</div>
<h1 id="code">代码<small>代码区间</small></h1>
<h2>一行代码</h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<pre>body{ background:white;}</pre>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;pre&gt;body{ background:white;}&lt;/pre&gt;</pre>
</div>
</div>
<h2>多行代码</h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<pre><ol><li>body{</li><li>background:white;</li><li>font-size:13px;</li><li>line-height:22px;</li><li>}</li></ol>
</pre>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;pre&gt;&lt;ol&gt;&lt;li&gt;body{&lt;/li&gt;&lt;li&gt;background:white;&lt;/li&gt;&lt;li&gt;font-size:13px;&lt;/li&gt;&lt;li&gt;line-height:22px;&lt;/li&gt;&lt;li&gt;}&lt;/li&gt;&lt;/ol&gt;&lt;/pre&gt;</pre>
</div>
</div>
<h1 id="table">表格<small>表格的表框,间距等进行了重写让table更美观</small></h1>
<h2>带边框的表格<small>加上<code>class="table table-bordered"</code>即可实现带边框的表格</small></h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<table class="table table-bordered">
<tbody>
<tr>
<td>当我还是个小女孩</td>
<td>我问我妈妈</td>
<td>将来我会变成什么样子呢</td>
</tr>
</tbody>
<tbody>
<tr>
<td>会漂亮吗</td>
<td>会富有吗</td>
<td>她对我说:世事不可强求,顺其自然吧</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>当我长大并恋爱了</td>
<td>我问我的心上人</td>
<td>我们将来会怎么样呢</td>
</tr>
<tr>
<td>生活每天都美好吗</td>
<td>我的爱人对我说:</td>
<td>世事不可强求,顺其自然吧</td>
</tr>
</tfoot>
</table>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;table class=&quot;table table-bordered&quot;&gt;<br> &lt;tbody&gt;<br> &lt;tr&gt;<br> &lt;td&gt;当我还是个小女孩&lt;/td&gt;<br> &lt;td&gt;我问我妈妈&lt;/td&gt;<br> &lt;td&gt;将来我会变成什么样子呢&lt;/td&gt;<br> &lt;/tr&gt;<br> &lt;/tbody&gt;<br> &lt;tbody&gt;<br> &lt;tr&gt;<br> &lt;td&gt;会漂亮吗&lt;/td&gt;<br> &lt;td&gt;会富有吗&lt;/td&gt;<br> &lt;td&gt;她对我说:世事不可强求,顺其自然吧&lt;/td&gt;<br> &lt;/tr&gt;<br> &lt;/tbody&gt;<br> &lt;tfoot&gt;<br> &lt;tr&gt;<br> &lt;td&gt;当我长大并恋爱了&lt;/td&gt;<br> &lt;td&gt;我问我的心上人&lt;/td&gt;<br> &lt;td&gt;我们将来会怎么样呢&lt;/td&gt;<br> &lt;/tr&gt;<br> &lt;tr&gt;<br> &lt;td&gt;生活每天都美好吗&lt;/td&gt;<br> &lt;td&gt;我的爱人对我说:&lt;/td&gt;<br> &lt;td&gt;世事不可强求,顺其自然吧&lt;/td&gt;<br> &lt;/tr&gt;<br> &lt;/tfoot&gt;<br>&lt;/table&gt;</pre>
</div>
</div>
<h2>斑马表格<small>加上<code>class="table table-zebra"</code>即可实现斑马表格</small></h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<table width="100%" border="0" class="table table-zebra">
<tr>
<td>When I was just a little girl </td>
<td>I asked my mother</td>
<td>what will I be</td>
</tr>
<tr>
<td>will I be pretty</td>
<td>will I be rich</td>
<td>here\'s what he said to me</td>
</tr>
<tr>
<td>que sera sera</td>
<td>whatever will be</td>
<td>will be</td>
</tr>
</table>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;table width=&quot;100%&quot; border=&quot;0&quot; class=&quot;table table-zebra&quot;&gt;&lt;/table&gt;</pre>
</div>
</div>
<h1 id="form">表单</h1>
<h4>对文本框等进行了重写,通过美化一些表单元素默认样式,例如文本框,按钮,下拉菜单等,让表单更美观。通过placeholder属性来完成,文本框的默认值,鼠标点击消失,失去光标,默认值恢复的效果。(改效果在firefox浏览器下可见)</h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<form action="" method="get" enctype="multipart/form-data">
<fieldset>
<legend>注册表单</legend>
<div class="form-group">
<div class="form-icon">
fadf
</div>
<label class="form-label">姓名 <small>字符在3~9位</small></label>
<div class="form-input">
</div>
<input name="" type="text" placeholder="请填写真实的姓名">
<input name="" type="text" placeholder="请填写真实的姓名" class="text radius">
</div>
<p>
<label>自我介绍:</label>
<textarea name="textarea" id="textarea" cols="45" rows="5"></textarea>
</p>
<p>
<label>爱好:</label>
<input type="checkbox" name="checkbox" id="checkbox">
踢球
<input type="checkbox" name="checkbox" id="checkbox">
上网
<input type="checkbox" name="checkbox" id="checkbox">
冲浪 </p>
<p>
<label>性别:</label>
<input type="radio" name="radio" id="radio" value="radio">
<input type="radio" name="radio" id="radio" value="radio">
</p>
<p>
<label>学历:</label>
<select name="select" id="select">
<option value="1">大学/大专</option>
<option value="2">高中/中专</option>
<option>小学</option>
</select>
</p>
<p>
<label>文件域:</label>
<input type="file" name="fileField" id="fileField">
</p>
<p>
<label></label>
<input name="" type="submit" class="button blue" value="提交">
<input name="重置" type="reset" class="button" value="重置">
</p>
</fieldset>
</form>
<!--//demo-->
</div>
<div class="doc-foot">
<pre>&lt;form action=&quot;&quot; method=&quot;get&quot; enctype=&quot;multipart/form-data&quot;&gt;<br> &lt;fieldset&gt;<br> &lt;legend&gt;注册表单&lt;/legend&gt;<br> &lt;p&gt;<br> &lt;label&gt;姓名 &lt;small&gt;字符在3~9位&lt;/small&gt;&lt;/label&gt;<br> &lt;input name=&quot;&quot; type=&quot;text&quot; placeholder=&quot;请填写真实的姓名&quot;&gt;<br> &lt;input name=&quot;&quot; type=&quot;text&quot; placeholder=&quot;请填写真实的姓名&quot; class=&quot;text radius&quot;&gt;<br> &lt;/p&gt;<br> &lt;p&gt;<br> &lt;label&gt;自我介绍:&lt;/label&gt;<br> &lt;textarea name=&quot;textarea&quot; id=&quot;textarea&quot; cols=&quot;45&quot; rows=&quot;5&quot;&gt;&lt;/textarea&gt;<br> &lt;/p&gt;<br> &lt;p&gt;<br> &lt;label&gt;爱好:&lt;/label&gt;<br> &lt;input type=&quot;checkbox&quot; name=&quot;checkbox&quot; id=&quot;checkbox&quot;&gt;<br> 踢球<br> &lt;input type=&quot;checkbox&quot; name=&quot;checkbox&quot; id=&quot;checkbox&quot;&gt;<br> 上网<br> &lt;input type=&quot;checkbox&quot; name=&quot;checkbox&quot; id=&quot;checkbox&quot;&gt;<br> 冲浪 &lt;/p&gt;<br> &lt;p&gt;<br> &lt;label&gt;性别:&lt;/label&gt;<br> &lt;input type=&quot;radio&quot; name=&quot;radio&quot; id=&quot;radio&quot; value=&quot;radio&quot;&gt;<br><br> &lt;input type=&quot;radio&quot; name=&quot;radio&quot; id=&quot;radio&quot; value=&quot;radio&quot;&gt;<br>&lt;/p&gt;<br> &lt;p&gt;<br> &lt;label&gt;学历:&lt;/label&gt;<br> &lt;select name=&quot;select&quot; id=&quot;select&quot;&gt;<br> &lt;option value=&quot;1&quot;&gt;大学/大专&lt;/option&gt;<br> &lt;option value=&quot;2&quot;&gt;高中/中专&lt;/option&gt;<br> &lt;option&gt;小学&lt;/option&gt;<br> &lt;/select&gt;<br> &lt;/p&gt;<br> &lt;p&gt;<br> &lt;label&gt;文件域:&lt;/label&gt;<br> &lt;input type=&quot;file&quot; name=&quot;fileField&quot; id=&quot;fileField&quot;&gt;<br> &lt;/p&gt;<br> &lt;p&gt;<br> &lt;label&gt;&lt;/label&gt;<br> &lt;input name=&quot;&quot; type=&quot;submit&quot; class=&quot;button blue&quot; value=&quot;提交&quot;&gt;<br> &lt;input name=&quot;重置&quot; type=&quot;reset&quot; class=&quot;button&quot; value=&quot;重置&quot;&gt;<br> &lt;/p&gt;<br> &lt;/fieldset&gt;<br> &lt;/form&gt;</pre>
</div>
</div>
<h1 id="button">按钮</h1>
<h4>对按钮或者a标签按钮的样式重写,css3按钮是指通过css3来实现的按钮的效果,css3纯css可以实现立体,渐变,阴影,圆角等很多种特效,如果把这些属性通过各种不同的方式组合在一起就能实现很多不同的炫酷的按钮效果。 <code>&lt;a class=&quot;button&quot;&gt;</code> 或者 <code>&lt;input type=&quot;button&quot; class=&quot;button&quot;&gt;</code></h4>
<!--demo-->
<table width="100%" border="0" class="table table-bordered">
<tr>
<td width="17%">演示</td>
<td width="83%">代码</td>
</tr>
<tr>
<td><a href="#" class="button">默认</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button&quot;&gt;默认&lt;/a&gt;</pre></td>
</tr>
<tr>
<td><a href="#" class="button button-inverse">反向</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button button-inverse&quot;&gt;反向&lt;/a&gt;</pre></td>
</tr>
<tr>
<td><a href="#" class="button bg-red bg-inverse">红色</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button bg-red bg-inverse&quot;&gt;红色&lt;/a&gt;</pre></td>
</tr>
<tr>
<td><a href="#" class="button bg-blue bg-inverse">蓝色</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button bg-blue bg-inverse&quot;&gt;蓝色&lt;/a&gt;</pre></td>
</tr>
<tr>
<td><a href="#" class="button bg-green bg-inverse">绿色</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button bg-green bg-inverse&quot;&gt;绿色&lt;/a&gt;</pre></td>
</tr>
<tr>
<td><a href="#" class="button bg-yellow bg-inverse">黄色</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button bg-yellow bg-inverse&quot;&gt;黄色&lt;/a&gt;</pre></td>
</tr>
<tr>
<td><a href="#" class="button button-little">超小号</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button button-little&quot;&gt;小号&lt;/a&gt;</pre></td>
</tr>
<tr>
<td><a href="#" class="button button-small">小号</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button button-small&quot;&gt;小号&lt;/a&gt;</pre></td>
</tr>
<tr>
<td><a href="#" class="button button-medium">中号</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button button-medium&quot;&gt;中号&lt;/a&gt;</pre></td>
</tr>
<tr>
<td><a href="#" class="button button-large">大号</a></td>
<td><pre>&lt;a href=&quot;#&quot; class=&quot;button button-large&quot;&gt;大号&lt;/a&gt;</pre></td>
</tr>
<tr>
<td colspan="2"><a href="#" class="button button-xlarge">加大号</a></td>
</tr>
<tr>
<td colspan="2"><pre>&lt;a href=&quot;#&quot; class=&quot;button button-xlarge&quot;&gt;加大号&lt;/a&gt;</pre></td>
</tr>
</table>
<!--//demo-->
<h1 id="text">文字</h1>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<p class="text-red">当我还是个小女孩,</p>
<p class="text-yellow">我问妈妈</p>
<p class="text-blue">将来我会变成什么样子呢?</p>
<p class="text-green">会漂亮吗?</p>
<p>会富有吗?</p>
<p>她对我说:</p>
<p>世事不可强求</p>
<p>顺其自然吧</p>
<!--//demo-->
</div>
<div class="doc-foot">
<pre class="prettyprint linenums">&lt;p class=&quot;text-red&quot;&gt;当我还是个小女孩,&lt;/p&gt;<br>&lt;p class=&quot;text-yellow&quot;&gt;我问妈妈&lt;/p&gt;<br>&lt;p class=&quot;text-blue&quot;&gt;将来我会变成什么样子呢?&lt;/p&gt;<br>&lt;p class=&quot;text-green&quot;&gt;会漂亮吗?&lt;/p&gt;<br>&lt;p&gt;会富有吗?&lt;/p&gt;<br>&lt;p&gt;她对我说:&lt;/p&gt;<br>&lt;p&gt;世事不可强求&lt;/p&gt;<br>&lt;p&gt;顺其自然吧&lt;/p&gt;</pre>
</div>
</div>
<h2 id="postion">文字位置</h2>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<p class="border text-left padding-small">当我还是个小女孩,我问妈妈,将来我会变成什么样子呢?</p>
<p class="border text-center padding-small">会漂亮吗?会富有吗?</p>
<p class="border text-right padding-small">她对我说:世事不可强求,顺其自然吧</p>
<p class="border text-justify padding-small">当我长大了,恋爱了,我问我的心上人,“我们将来会怎么样呢?我们的生活每天都会美好吗?”我的爱人对我说:“世事不可强求顺其自然吧。我们不能预见未来。世事不可强求顺其自然吧。”现在我有了自己的孩子,他们问我,“将来我会变成什么样子呢?会英俊吗?会富有吗?”我轻声地回答:“世事不可强求顺其自然吧。我们不能预见未来。世事不可强求顺其自然吧。”</p>
<!--//demo-->
</div>
<div class="doc-foot">
<pre class="prettyprint linenums">&lt;p class=&quot;border text-left padding-small&quot;&gt;当我还是个小女孩,我问妈妈,将来我会变成什么样子呢?&lt;/p&gt;<br>&lt;p class=&quot;border text-center padding-small&quot;&gt;会漂亮吗?会富有吗?&lt;/p&gt;<br>&lt;p class=&quot;border text-right padding-small&quot;&gt;她对我说:世事不可强求,顺其自然吧&lt;/p&gt;
&lt;p class=&quot;border text-justify padding-small&quot;&gt;当我长大了,恋爱了,...世事不可强求顺其自然吧。”&lt;/p&gt;</pre>
</div>
</div>
<h2 id="background">背景色</h2>
<h4>歌词来自《Whatever Will Be, Will Be》</h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<p class="bg-red bg-inverse padding-small">When I was just a little girl,</p>
<p class="bg-yellow bg-inverse padding-small">I asked my mother, </p>
<p class="bg-blue bg-inverse padding-small">"What will I be?</p>
<p class="bg-green bg-inverse padding-small">Will I be pretty?</p>
<p>Will I be rich?"</p>
<p class="bg-red-light text-red padding-small">When I was just a little girl,</p>
<p class="bg-yellow-light text-yellow padding-small">I asked my mother, </p>
<p class="bg-blue-light text-blue padding-small">"What will I be?</p>
<p class="bg-green-light text-green padding-small">Will I be pretty?</p>
<p>Will I be rich?"</p>
<!--//demo-->
</div>
<div class="doc-foot">
<pre class="prettyprint linenums">&lt;p class=&quot;bg-red bg-inverse padding-small&quot;&gt;When I was just a little girl,&lt;/p&gt;<br>&lt;p class=&quot;bg-yellow bg-inverse padding-small&quot;&gt;I asked my mother, &lt;/p&gt;<br>&lt;p class=&quot;bg-blue bg-inverse padding-small&quot;&gt;&quot;What will I be?&lt;/p&gt;<br>&lt;p class=&quot;bg-green bg-inverse padding-small&quot;&gt;Will I be pretty?&lt;/p&gt;
&lt;p class=&quot;bg-red-light text-red padding-small&quot;&gt;When I was just a little girl,&lt;/p&gt;<br>&lt;p class=&quot;bg-yellow-light text-yellow padding-small&quot;&gt;I asked my mother, &lt;/p&gt;<br>&lt;p class=&quot;bg-blue-light text-blue padding-small&quot;&gt;&quot;What will I be?&lt;/p&gt;<br>&lt;p class=&quot;bg-green-light text-green padding-small&quot;&gt;Will I be pretty?&lt;/p&gt;
</pre>
</div>
</div>
<h2 id="border">边框</h2>
<h4>歌词来自《Whatever Will Be, Will Be》</h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<p class="border border-red text-red padding-small">When I was just a little girl,</p>
<p class="border border-yellow text-yellow padding-small">I asked my mother, </p>
<p class="border border-blue text-blue padding-small">"What will I be?</p>
<p class="border border-green text-green padding-small">Will I be pretty?</p>
<p class="border padding-small">Will I be rich?"</p>
<!--//demo-->
</div>
<div class="doc-foot">
<pre class="prettyprint linenums">&lt;p class=&quot;border border-red text-red padding-small&quot;&gt;When I was just a little girl,&lt;/p&gt;<br>&lt;p class=&quot;border border-yellow text-yellow padding-small&quot;&gt;I asked my mother, &lt;/p&gt;<br>&lt;p class=&quot;border border-blue text-blue padding-small&quot;&gt;&quot;What will I be?&lt;/p&gt;<br>&lt;p class=&quot;border border-green text-green padding-small&quot;&gt;Will I be pretty?&lt;/p&gt;<br>&lt;p class=&quot;border padding-small&quot;&gt;Will I be rich?&quot;&lt;/p&gt;</pre>
</div>
</div>
<!--//border-->
<h2 id="image">图片</h2>
<h4>鼠标移上去图片放大类<code>img-scale</code></h4>
<div class="docs">
<div class="docs-head">example</div>
<div class="docs-body">
<!--demo-->
<a href="#"><img src="imgs/docs-img.jpg" class="img-scale" width="200"/></a>
<!--//demo-->
</div>
<div class="doc-foot">
<pre class="prettyprint linenums">&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;imgs/docs-img.jpg&quot; class=&quot;img-scale&quot; width=&quot;200&quot;/&gt;&lt;/a&gt;</pre>
</div>
</div>
<!--//图片-->
</div>
</div>
</div>
<div class="wrapper footer">
<p>&copy; CopyRight 2002-2013, Qietu Network Technology Co., Ltd. All Rights Reserved.<br/>
代码基于<a href="http://www.apache.org/licenses/LICENSE-2.0" rel="nofollow" target="_blank">Apache License v2.0</a>, 文档基于创作共享的 <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/" rel="nofollow" target="_blank">署名-非商业使用-相同方 式分享 2.5</a> 协议发布</p>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
CSS
1
https://gitee.com/qietuwang/slicy.git
[email protected]:qietuwang/slicy.git
qietuwang
slicy
slicy
master

搜索帮助