﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-Sealyu-随笔分类-CSS</title><link>http://www.blogjava.net/sealyu/category/41793.html</link><description>--- The devil's in the Details (&lt;a href="http://www.sealyu.com"&gt;http://www.sealyu.com&lt;/a&gt;)</description><language>zh-cn</language><lastBuildDate>Wed, 08 Dec 2010 09:17:45 GMT</lastBuildDate><pubDate>Wed, 08 Dec 2010 09:17:45 GMT</pubDate><ttl>60</ttl><item><title>CSS Hack区分浏览器 IE6 IE7 IE8 Firefox Opera Safari</title><link>http://www.blogjava.net/sealyu/archive/2010/12/08/340070.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Wed, 08 Dec 2010 07:39:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/12/08/340070.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/340070.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/12/08/340070.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/340070.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/340070.html</trackback:ping><description><![CDATA[<div class="bct fc05 fc11 nbw-blog ztag js-fs2">
<p style="text-indent: 2em;">为了向你展示这些&nbsp;CSS&nbsp;Hack&nbsp;是否正常运作，我新建六个&nbsp;P&nbsp;标签，并给每一个&nbsp;P&nbsp;标签一个特有的&nbsp;id。这将向你展示&nbsp;CSS&nbsp;Hack&nbsp;的运作情况。</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="opera"&gt;我来自&nbsp;Opera&nbsp;7.2&nbsp;-&nbsp;9.5&lt;/p&gt;&nbsp;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="safari"&gt;我是神奇的&nbsp;Safari&lt;/p&gt;&nbsp;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="firefox"&gt;我来自&nbsp;Firefox&lt;/p&gt;&nbsp;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="firefox12"&gt;我是你爷爷&nbsp;Firefox&nbsp;1&nbsp;-&nbsp;2&nbsp;&lt;/p&gt;</p>
<p style="text-indent: 2em;">&nbsp;&lt;p&nbsp;id="ie7"&gt;我是囧&nbsp;IE&nbsp;7&lt;/p&gt;&nbsp;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="ie6"&gt;我是脑瘸&nbsp;IE&nbsp;6&lt;/p&gt;&nbsp;</p>
<p style="text-indent: 2em;">　　然后我让这些&nbsp;P&nbsp;标签默认都不显示</p>
<p style="text-indent: 2em;">&lt;style&nbsp;type="text/css"&gt;&nbsp;body&nbsp;p{display:&nbsp;none;}&nbsp;&lt;/style&gt;&nbsp;</p>
<p style="text-indent: 2em;">　　<font color="#ff0000">使用&nbsp;IE&nbsp;CSS&nbsp;条件注释区分&nbsp;IE&nbsp;浏览器</font></p>
<p style="text-indent: 2em;">　　最简单的区分&nbsp;IE&nbsp;浏览器的方法自然是使用他们的条件注释。&nbsp;微软创建了一个强大的语法来让我们去实现这个功能。我不想再详细地介绍&nbsp;IE&nbsp;条件注释了，我想你在搜索引擎能搜索到上万个搜索条目，我这里只要这两个:</p>
<p style="text-indent: 2em;">&lt;!--[if&nbsp;IE&nbsp;7]&gt;&nbsp;</p>
<p style="text-indent: 2em;">&lt;style&nbsp;type="text/css"&gt;&nbsp;</p>
<p style="text-indent: 2em;">&lt;/style&gt;&nbsp;&lt;![endif]--&gt;</p>
<p style="text-indent: 2em;">&nbsp;&lt;!--[if&nbsp;IE&nbsp;6]&gt;&nbsp;</p>
<p style="text-indent: 2em;">&lt;style&nbsp;type="text/css"&gt;&nbsp;&lt;/style&gt;&nbsp;</p>
<p style="text-indent: 2em;">&lt;![endif]--&gt;&nbsp;</p>
<p style="text-indent: 2em;">　　<font color="#ff0000">使用&nbsp;CSS&nbsp;解析器&nbsp;Hacks&nbsp;区分&nbsp;IE</font></p>
<p style="text-indent: 2em;">　　虽说&nbsp;IE&nbsp;条件注释十分简单好用，但是如果你想把全部的&nbsp;CSS&nbsp;放到一个文件里的
话，那么你不得不使用别的方法。注意这里的&nbsp;IE&nbsp;7&nbsp;Hack将只对&nbsp;IE7&nbsp;有效，因为&nbsp;IE6&nbsp;根本不知道&nbsp;&gt;&nbsp;选择符。同时你也得注意
&nbsp;&gt;&nbsp;选择符对于其他浏览器同样是无效的。</p>
<p style="text-indent: 2em;">html&nbsp;&gt;&nbsp;body&nbsp;#ie7&nbsp;{*display:&nbsp;block;}&nbsp;</p>
<p style="text-indent: 2em;">&nbsp;body&nbsp;#ie6&nbsp;{_display:&nbsp;block;}&nbsp;</p>
<p style="text-indent: 2em;">　　<font color="#ff0000">CSS&nbsp;Hack&nbsp;区分&nbsp;Firefox</font></p>
<p style="text-indent: 2em;">　　第一个使用了&nbsp;body:empty&nbsp;来区分&nbsp;Firefox&nbsp;1&nbsp;和&nbsp;2&nbsp;。第二个&nbsp;hack使用了全部&nbsp;Firefox&nbsp;浏览器的专有扩展&nbsp;-moz。&nbsp;-moz&nbsp;只对&nbsp;Firefox有效，使用这个&nbsp;Hack&nbsp;大可不必担心其他浏览器的影响。</p>
<p style="text-indent: 2em;">body:empty&nbsp;#firefox12&nbsp;{display:&nbsp;block;}</p>
<p style="text-indent: 2em;">@-moz-document&nbsp;url-prefix()&nbsp;{#firefox&nbsp;{&nbsp;display:&nbsp;block;&nbsp;}}&nbsp;&nbsp;</p>
<p style="text-indent: 2em;">　　<font color="#ff0000">CSS&nbsp;Hack&nbsp;区分&nbsp;Safari</font></p>
<p style="text-indent: 2em;">　　Safari&nbsp;的&nbsp;CSS&nbsp;hack&nbsp;与&nbsp;Firefox&nbsp;的&nbsp;hack&nbsp;看起来很像，使用的是&nbsp;Safari浏览器的专有扩展&nbsp;-webkit&nbsp;且只对&nbsp;Safari&nbsp;浏览器有效。</p>
<p style="text-indent: 2em;">@media&nbsp;screen&nbsp;and&nbsp;(-webkit-min-device-pixel-ratio:0)&nbsp;{#safari&nbsp;{&nbsp;display:&nbsp;block;&nbsp;}}&nbsp;</p>
<p style="text-indent: 2em;">　　<font color="#ff0000">CSS&nbsp;Hack&nbsp;区分&nbsp;Opera</font></p>
<p style="text-indent: 2em;">@media&nbsp;all&nbsp;and&nbsp;(-webkit-min-device-pixel-ratio:10000),&nbsp;not&nbsp;all&nbsp;and&nbsp;(-webkit-min-device-pixel-ratio:0)&nbsp;{head~body&nbsp;#opera&nbsp;{&nbsp;display:&nbsp;block;&nbsp;}}&nbsp;</p>
<p style="text-indent: 2em;">　　然后，全部合在一起便是</p>
<p style="text-indent: 2em;">&lt;!DOCTYPE&nbsp;HTML&nbsp;PUBLIC&nbsp;"-//W3C//DTD&nbsp;HTML&nbsp;4.01//EN"&nbsp;"http://www.w3.org/TR/html4/strict.dtd"&gt;</p>
<p style="text-indent: 2em;">&lt;html&nbsp;lang="en"&gt;</p>
<p style="text-indent: 2em;">&lt;head&gt;</p>
<p style="text-indent: 2em;">&lt;meta&nbsp;http-equiv="Content-Type"&nbsp;content="text/html;&nbsp;charset=utf-8"&gt;</p>
<p style="text-indent: 2em;">&lt;title&gt;CSS&nbsp;Browser&nbsp;Hacks&nbsp;-&nbsp;52css.com&lt;/title&gt;</p>
<p style="text-indent: 2em;">&lt;style&nbsp;type="text/css"&gt;</p>
<p style="text-indent: 2em;">body&nbsp;p&nbsp;{</p>
<p style="text-indent: 2em;">&nbsp;&nbsp;&nbsp;&nbsp;display:&nbsp;none;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">html:first-child&nbsp;#opera&nbsp;{</p>
<p style="text-indent: 2em;">&nbsp;&nbsp;&nbsp;&nbsp;display:&nbsp;block;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">&nbsp;html&nbsp;&gt;&nbsp;body&nbsp;#ie7&nbsp;{</p>
<p style="text-indent: 2em;">*display:&nbsp;block;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">&nbsp;body&nbsp;#ie6&nbsp;{</p>
<p style="text-indent: 2em;">&nbsp;&nbsp;&nbsp;&nbsp;_display:&nbsp;block;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">body:empty&nbsp;#firefox12&nbsp;{</p>
<p style="text-indent: 2em;">&nbsp;&nbsp;&nbsp;&nbsp;display:&nbsp;block;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">&nbsp;</p>
<p style="text-indent: 2em;">@-moz-document&nbsp;url-prefix()&nbsp;{</p>
<p style="text-indent: 2em;">&nbsp;#firefox&nbsp;{</p>
<p style="text-indent: 2em;">&nbsp;&nbsp;&nbsp;&nbsp;display:&nbsp;block;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">@media&nbsp;screen&nbsp;and&nbsp;(-webkit-min-device-pixel-ratio:0)&nbsp;{</p>
<p style="text-indent: 2em;">#safari&nbsp;{</p>
<p style="text-indent: 2em;">display:&nbsp;block;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">@media&nbsp;all&nbsp;and&nbsp;(-webkit-min-device-pixel-ratio:10000),&nbsp;not&nbsp;all&nbsp;and&nbsp;(-webkit-min-device-pixel-ratio:0)&nbsp;{</p>
<p style="text-indent: 2em;">head~body&nbsp;#opera&nbsp;{</p>
<p style="text-indent: 2em;">display:&nbsp;block;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">&lt;/style&gt;</p>
<p style="text-indent: 2em;">&lt;/head&gt;</p>
<p style="text-indent: 2em;">&lt;body&gt;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="opera"&gt;我来自&nbsp;Opera&nbsp;7.2&nbsp;-&nbsp;9.5&lt;/p&gt;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="safari"&gt;我是神奇的&nbsp;Safari&lt;/p&gt;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="firefox"&gt;我来自&nbsp;Firefox&lt;/p&gt;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="firefox12"&gt;我是你爷爷&nbsp;Firefox&nbsp;1&nbsp;-&nbsp;2&nbsp;&lt;/p&gt;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="ie7"&gt;我是囧&nbsp;IE&nbsp;7&lt;/p&gt;</p>
<p style="text-indent: 2em;">&lt;p&nbsp;id="ie6"&gt;我是脑瘸&nbsp;IE&nbsp;6&lt;/p&gt;</p>
<p style="text-indent: 2em;">&lt;/body&gt;</p>
<p style="text-indent: 2em;">&lt;/html&gt;</p>
<p style="text-indent: 2em;">&nbsp;</p>
<p style="text-indent: 2em;">　　CSS&nbsp;Hack&nbsp;虽好且方便兼容各浏览器，但是通不过&nbsp;W3C&nbsp;验证，所以还得自己权衡是否有必要去使用。</p>
</div>
<img src ="http://www.blogjava.net/sealyu/aggbug/340070.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-12-08 15:39 <a href="http://www.blogjava.net/sealyu/archive/2010/12/08/340070.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Effective and Powerful CSS Tools &amp; Generators for Designers</title><link>http://www.blogjava.net/sealyu/archive/2010/10/18/335451.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Mon, 18 Oct 2010 06:09:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/10/18/335451.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/335451.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/10/18/335451.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/335451.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/335451.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: Realizing the increasing demand of useful apps across the web, weregularly feature commercial and free software on instantShift, sodecided it was time to bring a roundup of highly essential CSS to...&nbsp;&nbsp;<a href='http://www.blogjava.net/sealyu/archive/2010/10/18/335451.html'>阅读全文</a><img src ="http://www.blogjava.net/sealyu/aggbug/335451.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-10-18 14:09 <a href="http://www.blogjava.net/sealyu/archive/2010/10/18/335451.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Clean vCard: A Free Professional XHTML-CSS vCard Template</title><link>http://www.blogjava.net/sealyu/archive/2010/10/18/335450.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Mon, 18 Oct 2010 06:06:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/10/18/335450.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/335450.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/10/18/335450.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/335450.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/335450.html</trackback:ping><description><![CDATA[<p>Once Again, We&#8217;ve came up with cool freebies giveaway as promised.
This is our way of saying thanks to our readers for being part of the
instantShift community and helping us make it to where we are right now.
We never wait for special occasions to announce good freebies. To
continue our grateful attitude to our readers and community in general,
we are glad to release this XHTML/CSS Template <strong>Clean vCard</strong>. It&#8217;s our latest high-quality freebies addition for instantShift readers.</p>
<p><strong>&#8220;Clean vCard&#8221;</strong>, as the name implies, it&#8217;s Free
Professional vCard XHTML/CSS template suitable for any personal visiting
card or portfolio related site. And have all the requirements and
features of a typical online portfolio. This layout was designed by <a href="http://ibrandstudio.com/"><strong>iBrandStudio</strong></a> and developed by <a href="http://www.rapidxhtml.com/"><strong>RapidxHTML</strong></a> as an exclusive gift for instantShift readers.<br />
<br />
<br clear="all" />
</p>
<p>About a year ago we compiled a handy list of <a href="http://www.instantshift.com/2009/09/29/99-high-quality-free-xhtmlcss-templates/"><strong>99 High-Quality Free (X)HTML/CSS Templates</strong></a> and <strong>&#8220;Clean vCard&#8221;</strong> can be a great addition to that.</p>
<p>Please feel free to join us and you are always welcome to share your
thoughts even if you have more reference links related to other free
template that our readers may like.</p>
<p>Don&#8217;t forget to <a rel="external nofollow" href="http://feeds2.feedburner.com/ishift"><img src="http://www.instantshift.com/images/rss.png" alt="Subscribe to our RSS-feed" style="float: none; padding: 0pt; margin: 0pt; border: 0pt none;" align="absmiddle" /> <strong>subscribe to our RSS-feed</strong></a> and <a rel="external nofollow" href="http://twitter.com/instantshift"><img src="http://www.instantshift.com/images/twitter.png" alt="Follow us on Twitter" style="float: none; padding: 0pt; margin: 0pt; border: 0pt none;" align="absmiddle" /> <strong>follow us on Twitter</strong></a> — for recent updates.</p>
<p><br clear="all" />
</p>
<div style="padding-left: 40px;">
<img src="http://www.instantshift.com/wp-content/uploads/2010/10/cvfpvt-01.jpg" alt="Clean vCard - Free Professional vCard Template" title="Clean vCard - Free Professional vCard Template" width="560" /><br clear="all" />
</div>
<p><br clear="all" />
</p>
<h1>Main Features of The Template</h1>
<ul>
    <li>Colorful, vibrant, and attractive custom design</li>
    <li>Modern and beautiful web typeface.</li>
    <li>XHTML 1.0 Strict valid.</li>
    <li>CSS 3.0 valid.</li>
    <li>Tableless and 100% CSS-based layout.</li>
    <li>SEO Semantics Markup</li>
    <li>Loaded with Jquery.</li>
    <li>Well-commented CSS and template PHP files for flexible customization.</li>
    <li>WAI 2.0 / Section 508 compatibility</li>
    <li>Delivered with source .PSD file.</li>
    <li>Contact form PHP version included.</li>
    <li>Cross-browser compatible. Tested under modern w3c compliant browsers. IE7+, Firefox 3+, Safari 3+, Opera 10+ and Chrome.</li>
</ul>
<p><br clear="all" />
</p>
<h1>About Designer</h1>
<div style="padding-left: 40px;">
<a href="http://ibrandstudio.com/"><img src="http://www.instantshift.com/wp-content/uploads/2010/10/cvfpvt-02.jpg" alt="iBrandStudio" title="iBrandStudio" width="560" /></a>
</div>
<p><br clear="all" />
</p>
<p><a href="http://ibrandstudio.com/"><strong>iBrandStudio</strong></a> is a site dedicated to help the people for designing their brand identity. To get in touch, you can follow their twitter id <a href="http://twitter.com/ibrandstudio"><strong>@ibrandstudio</strong></a> or grab their <a href="http://feeds2.feedburner.com/IBrandStudio"><strong>RSS Feed</strong></a> for exclusive updates.</p>
<p><br clear="all" />
</p>
<h1>About Developer</h1>
<div style="padding-left: 40px;">
<a href="http://www.rapidxhtml.com/"><img src="http://www.instantshift.com/wp-content/uploads/2010/10/cvfpvt-03.jpg" alt="RapidxHTML" title="RapidxHTML" width="560" /></a>
</div>
<p><br clear="all" />
</p>
<p><a href="http://www.rapidxhtml.com/"><strong>RapidxHTML</strong></a>
is a small team of designers and developers, with a wide range of skills
and experience. Each of them know their strengths and weaknesses and
how these fit into the big picture.</p>
<p>They offer professional XHTML / CSS markup services at very
affordable price. Their combined expertise in eye-catching graphic
layout with modern web design standards built into one of the most
powerful systems in the world. You can follow them on twitter as <a href="http://twitter.com/rapidxhtml"><strong>@rapidxhtml</strong></a></p>
<p><br clear="all" />
</p>
<h1>Agreements</h1>
<p>&#8220;Clean vCard&#8221; is a free template release and we thus release it &#8220;as is&#8221;. <a href="http://www.instantshift.com/"><strong>We</strong></a> &amp; <a href="http://ibrandstudio.com/"><strong>iBrandStudio</strong></a> &amp; <a href="http://www.rapidxhtml.com/"><strong>RapidxHTML</strong></a>
will not be offering any support to users of this template layout. If
you would like some assistance with &#8220;Clean vCard&#8221; and you&#8217;d like to tap
into the collective knowledge of the instantShift community.</p>
<p>By downloading this layout, under the terms of the GNU General Public
License, it is vital that you understood the following terms and
conditions :</p>
<ul>
    <li>You can use them on as many domain names as you wish.</li>
    <li>You may use them for your clients&#8217; projects / websites. Number of projects is not limited.</li>
    <li>You may not claim intellectual and exclusive ownership to any of the layout.</li>
    <li>You may not sub-license the original layout and their individual
    files to and with anyone else, unless a specific license within the
    layout states otherwise.</li>
    <li>You may modify them. However, you may not modify and then resell,
    unless the modified versions are drastically different from the
    originals.</li>
    <li>We reserve the right to refuse, cancel, or suspend service at our
    sole discretion and the right to change or modify these terms with no
    prior notice.</li>
    <li>No support will be provided for any free theme/template/layout by instantShift.</li>
    <li>Do not provide the direct download link nor upload &#8220;Clean vCard&#8221; onto other servers for your own share (Please link to <a href="http://www.instantshift.com/2010/10/13/clean-vcard-a-free-professional-xhtml-css-vcard-template"><strong>this article</strong></a> instead). If you want to spread the words, just link to this article.</li>
</ul>
<p><br clear="all" />
</p>
<h1>Download The Template files for Free!</h1>
<p>The template is released under GPL. You can use it for all your projects for free and without any restrictions. Please link to <a href="http://www.instantshift.com/2010/10/13/clean-vcard-a-free-professional-xhtml-css-vcard-template"><strong>this article</strong></a>
if you would like to spread the word. You may modify the layout as you
wish, but if you are planning to release your modification, please ask
for permission first.</p>
<div style="padding-left: 40px;">
<img src="http://www.instantshift.com/wp-content/uploads/2010/10/cvfpvt-04.jpg" alt="Clean vCard - Free Professional vCard Template" title="Clean vCard - Free Professional vCard Template" width="560" /><br clear="all" />
</div>
<p><br clear="all" />
</p>
<ul>
    <li><strong><u><a href="http://www.rapidxhtml.com/promotions/vcard/" title="Clean vCard Demo" target="_blank">Live Demo</a></u></strong></li>
    <li><strong><u><a href="http://www.instantshift.com/wp-content/uploads/2010/10/cv-large-1263x678.jpg" title="Clean vCard Large Preview" target="_blank">Large Preview</a></u></strong> (.png, 0.15 Mb)</li>
    <li><strong><u><a href="http://www.instantshift.com/wp-content/plugins/download-monitor/download.php?id=20" title=" downloaded 602 times">Download "Clean vCard" Template</a></u> (.zip, 0.68 MB)</strong></li>
    <li><strong><u><a href="http://www.instantshift.com/media/uploads/2010/10/clean-vcard-template-psd.zip" title="Download Clean vCard .PSD">Download &#8220;Clean vCard&#8221; .PSD</a></u> (.zip, 1.01 MB)</strong></li>
</ul>
<img src ="http://www.blogjava.net/sealyu/aggbug/335450.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-10-18 14:06 <a href="http://www.blogjava.net/sealyu/archive/2010/10/18/335450.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Top Articles On The Web Design Billboard In August’10</title><link>http://www.blogjava.net/sealyu/archive/2010/09/16/332135.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Thu, 16 Sep 2010 01:17:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/09/16/332135.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/332135.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/09/16/332135.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/332135.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/332135.html</trackback:ping><description><![CDATA[<p>Throughout history, great designers always found new ways to show
their creativity to express themselves and create new trends and
techniques to remark their work apart from the rest of the crowd. The
Definition of design is more critical in modern terms as now design is a
way of communication; and, more specifically, Web design is a well
define platform for content. There is no "Good" and "Bad" in design. It
always define as a "Different".</p>
<p>So how can you make sure your design is better than the designs of
your competitors? How can you point employer&#8217;s attention to your
product? Here we might be able to help you by showcasing following list
of <strong>best resources available on web in the month of August</strong>.</p>
<h1>Design Showcase, Feature Collection</h1>
<div style="padding-left: 40px;">
<br clear="all" />
<h4><u>35+ Unique &amp; Interesting Product Packaging Designs</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.onextrapixel.com/2010/08/13/35-unique-interesting-product-packaging-designs/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-01.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.onextrapixel.com/2010/08/13/35-unique-interesting-product-packaging-designs/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Corporate Website Design: Creative and Beautiful Solutions</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/25/corporate-website-design-creative-and-beautiful-solutions/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-02.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/25/corporate-website-design-creative-and-beautiful-solutions/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>50 Fresh Portfolio and Blog Design Interfaces for Inspiration</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://aext.net/2010/08/portfolio-blog-design-mockups/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-03.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://aext.net/2010/08/portfolio-blog-design-mockups/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>40 Stunningly Creative Resume Designs on DeviantArt</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.1stwebdesigner.com/inspiration/creative-resume-designs/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-04.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.1stwebdesigner.com/inspiration/creative-resume-designs/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Showcase Of Delicious Coffee Websites</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/10/showcase-of-delicious-coffee-websites/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-05.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/10/showcase-of-delicious-coffee-websites/">Official Link</a><br />
<br clear="all" />
</p>
</div>
<p><br clear="all" />
</p>
<h1>Photography, Digital Showcase and Art inspiration</h1>
<div style="padding-left: 40px;">
<br clear="all" />
<h4><u>88 Brilliant Examples of Forced Perspective Photography</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/24/88-brilliant-examples-of-forced-perspective-photography/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-06.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/24/88-brilliant-examples-of-forced-perspective-photography/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Photography Inspiration: 40 Magnificent Aerial Photos</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://naldzgraphics.net/inspirations/photography-inspiration-40-magnificent-aerial-photos/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-07.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://naldzgraphics.net/inspirations/photography-inspiration-40-magnificent-aerial-photos/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Surreal Photo Manipulation: 40 Amazing Artwork</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.hongkiat.com/blog/surreal-photo-manipulation-40-amazing-artworks/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-08.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.hongkiat.com/blog/surreal-photo-manipulation-40-amazing-artworks/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Russia in color, a century ago</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.boston.com/bigpicture/2010/08/russia_in_color_a_century_ago.html"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-09.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.boston.com/bigpicture/2010/08/russia_in_color_a_century_ago.html">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>15 Logos With Hidden Messages</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://webdesignledger.com/inspiration/15-logos-with-hidden-messages"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-10.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://webdesignledger.com/inspiration/15-logos-with-hidden-messages">Official Link</a><br />
<br clear="all" />
</p>
</div>
<p><br clear="all" />
</p>
<h1>Freebies Resources (Themes, Wallpapers, PSDs, Icons, Vectors, Fonts etc.)</h1>
<div style="padding-left: 40px;">
<br clear="all" />
<h4><u>100 Free High Quality WordPress Themes: 2010 Edition</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/19/100-free-high-quality-wordpress-themes-for-2010/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-11.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/19/100-free-high-quality-wordpress-themes-for-2010/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>100+ Free High Quality Icon Sets for Web Designers and Developers</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/27/100-free-high-quality-icon-sets-for-web-designers-and-developers/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-12.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/27/100-free-high-quality-icon-sets-for-web-designers-and-developers/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Free Social Media Icon Sets &#8211; Best Of</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.hongkiat.com/blog/free-social-media-icon-sets-best-of/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-13.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.hongkiat.com/blog/free-social-media-icon-sets-best-of/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>40+ Elegant Free CSS/(X)HTML Templates from 2010</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.noupe.com/how-tos/40-elegent-free-css-x-html-templates-from-2010.html"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-14.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.noupe.com/how-tos/40-elegent-free-css-x-html-templates-from-2010.html">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>60 Beautiful Minimalist Desktop Wallpapers</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.hongkiat.com/blog/beautiful-minimalist-desktop-wallpapers/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-15.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.hongkiat.com/blog/beautiful-minimalist-desktop-wallpapers/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>30 New Free High-Quality Fonts</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/12/30-new-free-high-quality-fonts-typography/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-16.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/12/30-new-free-high-quality-fonts-typography/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>35 Fresh High-Quality Free Fonts for Professional Designers</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/18/35-fresh-high-quality-free-fonts-for-professional-designers/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-17.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/18/35-fresh-high-quality-free-fonts-for-professional-designers/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>80+ Useful PSD Templates For Web Designers</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.noupe.com/freebie/80-useful-psd-templates-for-designers.html"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-18.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.noupe.com/freebie/80-useful-psd-templates-for-designers.html">Official Link</a><br />
<br clear="all" />
</p>
</div>
<p><br clear="all" />
</p>
<h1>Tutorials, Tips, Tricks &amp; Hacks Resources</h1>
<div style="padding-left: 40px;">
<br clear="all" />
<h4><u>28 HTML5 Features, Tips, and Techniques you Must Know</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://net.tutsplus.com/tutorials/html-css-techniques/25-html5-features-tips-and-techniques-you-must-know/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-19.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://net.tutsplus.com/tutorials/html-css-techniques/25-html5-features-tips-and-techniques-you-must-know/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Twitter Background Design &#8211; Great Tips and Gorgeous Examples</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://psd.tutsplus.com/articles/inspiration/twitter-background-design-great-tips-and-gorgeous-examples/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-20.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://psd.tutsplus.com/articles/inspiration/twitter-background-design-great-tips-and-gorgeous-examples/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>10 Useful iPhone Shortcuts, Tips and Tricks</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://mashable.com/2010/08/31/iphone-tips-tricks/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-21.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://mashable.com/2010/08/31/iphone-tips-tricks/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>How to Design a Phone Icon in Photoshop</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/03/how-to-design-a-phone-icon-in-photoshop/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-22.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/03/how-to-design-a-phone-icon-in-photoshop/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Create Gold Ornamental Text in Photoshop</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://psd.tutsplus.com/tutorials/text-effects-tutorials/create-gold-ornamental-text-in-photoshop/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-23.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://psd.tutsplus.com/tutorials/text-effects-tutorials/create-gold-ornamental-text-in-photoshop/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Building a Sleek AJAX Email Signup Form</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/building-a-sleek-ajax-signup-form/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-24.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/building-a-sleek-ajax-signup-form/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Correcting Exposure with the Shadows &amp; Highlights Tool</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.tutorial9.net/photoshop/correcting-exposure-with-the-shadows-highlights-tool/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-25.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.tutorial9.net/photoshop/correcting-exposure-with-the-shadows-highlights-tool/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>20 Methods for Upping Your Current Web Design Skills</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.onextrapixel.com/2010/08/24/20-methods-for-upping-your-current-web-design-skills/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-26.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.onextrapixel.com/2010/08/24/20-methods-for-upping-your-current-web-design-skills/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>How To Create a Detailed Vector Sugar Skull Illustration</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-detailed-vector-sugar-skull-illustration"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-27.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-detailed-vector-sugar-skull-illustration">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>16 Vital Checks Before Releasing a WordPress Theme</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://net.tutsplus.com/tutorials/wordpress/16-vital-checks-before-releasing-a-wordpress-theme/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-28.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://net.tutsplus.com/tutorials/wordpress/16-vital-checks-before-releasing-a-wordpress-theme/">Official Link</a><br />
<br clear="all" />
</p>
</div>
<p><br clear="all" />
</p>
<h1>CSS, xHTML, Javascript, Ajax and Design Resources</h1>
<div style="padding-left: 40px;">
<br clear="all" />
<h4><u>20 HTML Best Practices You Should Follow</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://sixrevisions.com/web-standards/20-html-best-practices-you-should-follow/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-29.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://sixrevisions.com/web-standards/20-html-best-practices-you-should-follow/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>10 Great Tips for Writing Better And More Comprehensive CSS</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://spyrestudios.com/10-great-tips-for-writing-better-and-more-comprehensive-css/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-30.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://spyrestudios.com/10-great-tips-for-writing-better-and-more-comprehensive-css/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Commonly Confused Bits Of jQuery</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/04/commonly-confused-bits-of-jquery/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-31.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/04/commonly-confused-bits-of-jquery/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>8 examples of stunning CSS3 text effects</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.catswhocode.com/blog/8-examples-of-stunning-css3-text-effects"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-32.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.catswhocode.com/blog/8-examples-of-stunning-css3-text-effects">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>25 Incredibly Useful CSS Snippets for Developers</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.1stwebdesigner.com/development/useful-css-snippets/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-33.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.1stwebdesigner.com/development/useful-css-snippets/">Official Link</a><br />
<br clear="all" />
</p>
</div>
<p><br clear="all" />
</p>
<h1>Appz, Tools and Development Resources</h1>
<div style="padding-left: 40px;">
<br clear="all" />
<h4><u>80 Of The Most Useful Mac Tools and Utilities</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://mac.appstorm.net/roundups/utilities-roundups/80-of-the-most-useful-mac-tools-and-utilities/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-34.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://mac.appstorm.net/roundups/utilities-roundups/80-of-the-most-useful-mac-tools-and-utilities/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>50 Awesome New jQuery Plugins</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://speckyboy.com/2010/08/22/50-awesome-new-jquery-plugins/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-35.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://speckyboy.com/2010/08/22/50-awesome-new-jquery-plugins/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>8 CSS preprocessors to speed up development time</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.catswhocode.com/blog/8-css-preprocessors-to-speed-up-development-time"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-36.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.catswhocode.com/blog/8-css-preprocessors-to-speed-up-development-time">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>45 Free Applications For Designers And Developers</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.noupe.com/tools/45-free-applications-for-designers-and-developers.html"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-37.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.noupe.com/tools/45-free-applications-for-designers-and-developers.html">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>20+ New Apps and Websites for Designers</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.webdesignerdepot.com/2010/08/20-new-apps-and-websites-for-designers/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-38.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.webdesignerdepot.com/2010/08/20-new-apps-and-websites-for-designers/">Official Link</a><br />
<br clear="all" />
</p>
</div>
<p><br clear="all" />
</p>
<h1>Freelancing Resources</h1>
<div style="padding-left: 40px;">
<br clear="all" />
<h4><u>26 Common Freelancing Mistakes to Avoid</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://freelancefolder.com/26-common-freelancing-mistakes-to-avoid/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-39.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://freelancefolder.com/26-common-freelancing-mistakes-to-avoid/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>How I Learned to Stop Worrying and Love My Job</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://freelanceswitch.com/inspiration/love-my-job/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-40.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://freelanceswitch.com/inspiration/love-my-job/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>6 Online Marketing Mistakes that Will Kill Your Business</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.copyblogger.com/business-mistakes/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-41.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.copyblogger.com/business-mistakes/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>5 Good Ways to Close a Client Deal</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://freelancefolder.com/5-good-ways-to-close-a-new-client-deal/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-42.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://freelancefolder.com/5-good-ways-to-close-a-new-client-deal/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Designers, &#8220;Hacks&#8221; and Professionalism: Are We Our Own Worst Enemy?</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/03/designers-hacks-and-professionalism-are-we-our-own-worst-enemy/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-43.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/03/designers-hacks-and-professionalism-are-we-our-own-worst-enemy/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>15 Ways to Get Inspired</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://freelancefolder.com/15-ways-to-get-inspired/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-44.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://freelancefolder.com/15-ways-to-get-inspired/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Doing the Little Things to Please Clients</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://freelancefolder.com/doing-the-little-things-to-please-clients/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-45.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://freelancefolder.com/doing-the-little-things-to-please-clients/">Official Link</a><br />
<br clear="all" />
</p>
</div>
<p><br clear="all" />
</p>
<h1>Miscellaneous Resources</h1>
<div style="padding-left: 40px;">
<br clear="all" />
<h4><u>Why Your Blog Doesn&#8217;t Make Money</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.copyblogger.com/no-blog-money/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-46.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.copyblogger.com/no-blog-money/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>How Limitations Improve Design</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.webdesignerdepot.com/2010/08/how-limitations-improve-design/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-47.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.webdesignerdepot.com/2010/08/how-limitations-improve-design/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Giving Users Some Credit</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://designinformer.com/giving-users-some-credit/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-48.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://designinformer.com/giving-users-some-credit/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>A Design Is Only As Deep As It Is Usable</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/23/a-design-is-only-as-deep-as-it-is-usable/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-49.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/23/a-design-is-only-as-deep-as-it-is-usable/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Why SEO Doesn&#8217;t Matter Anymore and What You Should Do Instead</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/16/why-seo-doesnt-matter-anymore-and-what-you-should-do-instead/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-50.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.instantshift.com/2010/08/16/why-seo-doesnt-matter-anymore-and-what-you-should-do-instead/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>Reductionism in Web Design</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://sixrevisions.com/web_design/reductionism-in-web-design/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-51.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://sixrevisions.com/web_design/reductionism-in-web-design/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>5 Reasons Why No One Is Reading Your Email Newsletter</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.copyblogger.com/email-newsletter-response/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-52.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.copyblogger.com/email-newsletter-response/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>The Future of the Internet</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/11/the-future-of-the-internet/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-53.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.smashingmagazine.com/2010/08/11/the-future-of-the-internet/">Official Link</a><br />
<br clear="all" />
</p>
<h4><u>60 Ways to Increase Your Influence Online</u></h4>
<p><a target="_blank" rel="external nofollow" href="http://www.copyblogger.com/increase-influence-online/"><img src="http://www.instantshift.com/wp-content/uploads/2010/09/taotwdbi0810-54.jpg" alt="instantShift - Top Articles On The Web Design Billboard In August" title="instantShift - Top Articles On The Web Design Billboard In August" class="alignnone size-full top_m" width="560" /></a><br />
<br clear="all" />
<a target="_blank" rel="external nofollow" href="http://www.copyblogger.com/increase-influence-online/">Official Link</a><br />
<br clear="all" />
</p>
</div>
<p><br clear="all" />
</p>
<h1><br />
</h1>
<img src ="http://www.blogjava.net/sealyu/aggbug/332135.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-09-16 09:17 <a href="http://www.blogjava.net/sealyu/archive/2010/09/16/332135.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>CSS Sprites</title><link>http://www.blogjava.net/sealyu/archive/2010/09/07/331292.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Tue, 07 Sep 2010 04:24:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/09/07/331292.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/331292.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/09/07/331292.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/331292.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/331292.html</trackback:ping><description><![CDATA[CSS Sprites总结：<br />
<ol>
    <li>主要适用CSS的background-position属性，将HTML元素放到背景图片中期望的位置。</li>
    <li>通过减少HTTP请求的次数来降低开销，提高加载速度</li>
    <li>通过合并图片来降低图片自身的开销（颜色表/格式信息等）<br />
    </li>
</ol>
<br />
<img src ="http://www.blogjava.net/sealyu/aggbug/331292.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-09-07 12:24 <a href="http://www.blogjava.net/sealyu/archive/2010/09/07/331292.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>100+ Free High Quality Icon Sets for Web Designers and Developers</title><link>http://www.blogjava.net/sealyu/archive/2010/08/30/330283.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Mon, 30 Aug 2010 06:39:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/08/30/330283.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/330283.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/08/30/330283.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/330283.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/330283.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: Icons are the basic requirement of any web related projects and good icons are like a treasure for web designers.The demand for good icons are too much in these days and finding thebest icon sets ...&nbsp;&nbsp;<a href='http://www.blogjava.net/sealyu/archive/2010/08/30/330283.html'>阅读全文</a><img src ="http://www.blogjava.net/sealyu/aggbug/330283.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-08-30 14:39 <a href="http://www.blogjava.net/sealyu/archive/2010/08/30/330283.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>CSS Image Maps(转)</title><link>http://www.blogjava.net/sealyu/archive/2010/08/12/328621.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Thu, 12 Aug 2010 02:47:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/08/12/328621.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/328621.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/08/12/328621.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/328621.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/328621.html</trackback:ping><description><![CDATA[<div>
<p><a href="http://www.frankmanno.com/ideas/css-imagemap/#ex">原帖： http://www.frankmanno.com/ideas/css-imagemap/</a></p>
<p><a href="http://www.frankmanno.com/ideas/css-imagemap/#ex">Skip to Example</a></p>
<div id="alert">
An alternative to image-only CSS maps has been published.  If you're looking for
an easier way of creating image maps involving a single image, you may be
interested in reading <a href="http://frankmanno.com/ideas/css-imagemap-redux/"><strong>CSS Image Maps, Redux</strong></a>
</div>
<p><img src="http://www.frankmanno.com/ideas/css-imagemap/imagemap.jpg" alt="Image Maps" style="float: left; margin: 0pt 5px 5px 0pt;" height="170" width="220" />Below is a sample image map that's built entirely using CSS and XHTML.  While I've added support
for Javascript (item titles are simply displayed beneath the image), I've disabled it in this example
-- I've run into a bit of a problem when JS is enabled and CSS is disabled (more details below).</p>
<p>The initial idea for this came from a <a href="http://scribbling.net/dhtml-image-annotation">blog
posting</a> I read over at Gina Trappini's blog, Scribbling.net.  Her example was well done, but I wanted
to attempt the same (or similar) using only CSS.</p>
<p>I then found a link to <a href="http://www.kryogenix.org/code/browser/annimg/annimg.html">The Daily Kryogenix</a> site (via Gina's post) that led to an image map that made use of ligher DHTML, and made use of the <code>&lt;title&gt;</code> tag to display notes about a hotspot.
Still, somewhat dependant on Javascript/DHTML.</p>
<p>In the end, I decided to make use of Doug Bowman's
<a href="http://www.alistapart.com/articles/slidingdoors/">Sliding Doors</a> technique combined with a
definition list (<code>&lt;dl&gt;&lt;/dl&gt;</code>).</p>
<p>The sliding doors technique allows you to contain all your image rollover effects in one image file,
and make use of the <code>background-position</code> CSS property to "shift" the image in any
direction.  By adding a <code>:hover</code> effect to your CSS (in this case to the
<code>&lt;a&gt;</code> tag contained within the <code>&lt;dd&gt;</code> tag), you can shift the image to a desired position.</p>
<p>What I did was build the image map in Photoshop.  As you can see by this <a href="http://www.frankmanno.com/ideas/css-imagemap/office.jpg">image</a>, the map
is made up of 3 copies of the same image, each with different markings.  The top (<strong>1 of 3</strong>) simply marks
the hotspots with numbers, and middle and bottom images (<strong>2 and 3 of 3</strong>) each contain the rollover
effects (white transparancy).  You may be wondering why the rollover effect is separated into two
separate images.  The reason for the separation is due to the overlap in adjacent items (ie: the monitor,
the notebook and the floppy disk on the desk).  Rather than having a collision between the two items,
the rollover effects for neighboring items were separated onto multiple copies of the same image.</p>
<p>Essentially, the way this works is by placing the title of the item hotspot into the definition-term
tag (<code>&lt;dt&gt;&lt;/dt&gt;</code>) of your list, followed by the description in the
definition-description tag (<code>&lt;dd&gt;&lt;/dd&gt;</code>).  The
CSS then hides the definition-term
(which is really used for when CSS is disabled), as well as the
definition-description (displayed upon hover of the anchor) and
displays the definition description (in this case, the description of
the hotspot(s) you've chosen for
your imagemap), and absolutely positions and displays the description
upon rolling over the hotspot
(also defined in the CSS).</p>
<p>The code also degrades gracefully.  An <code>&lt;img&gt;</code> tag,
which displays a non-mapped version of the image map, is hidden
using CSS.  For those who have CSS disabled, the mapped version of the
image (3-piece image) does not display, since it is part of the
<code>background</code> CSS property.  Rather the non-mapped version will display, along with an unstyled definition list.  If you've
got the <a href="https://update.mozilla.org/extensions/moreinfo.php?application=firefox&amp;id=60">Web Developer</a> extension for Firefox,
go ahead and disable styles.  You'll get a better idea of the degredation.</p>
<p>A sample of the code is displayed below (view source for full CSS and XHTML):</p>
</div>
<h2>CSS:</h2>
<div>
<pre><code><br />
<br />
<br />
<br />
dd#monitorDef{ top: 65px; left: 114px; }<br />
<br />
<br />
<br />
dd#monitorDef a{ position: absolute; width: 73px; height: 69px; text-decoration: none; }<br />
<br />
<br />
<br />
dd#monitorDef a span{ display: none; }<br />
<br />
<br />
<br />
dd#monitorDef a:hover{ position: absolute; background: transparent url(office.jpg) -109px -317px no-repeat; top: -10px; left: -5px; }<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
dd#monitorDef a:hover span{<br />
<br />
<br />
<br />
display: block;<br />
<br />
<br />
<br />
text-indent: 0;<br />
<br />
<br />
<br />
vertical-align: top;<br />
<br />
<br />
<br />
color: #000;<br />
<br />
<br />
<br />
background-color: #F4F4F4;<br />
<br />
<br />
<br />
font-weight: bold;<br />
<br />
<br />
<br />
position: absolute;<br />
<br />
<br />
<br />
border: 1px solid #BCBCBC;<br />
<br />
<br />
<br />
bottom: 100%;<br />
<br />
<br />
<br />
margin: 0;<br />
<br />
<br />
<br />
padding: 5px;<br />
<br />
<br />
<br />
width: 250%;<br />
<br />
<br />
<br />
}<br />
<br />
<br />
<br />
</code><br />
<br />
<br />
<br />
</pre>
</div>
<h2>HTML:</h2>
<div>
<pre><code><br />
<br />
<br />
<br />
&lt;dl id="officeMap"&gt;<br />
<br />
<br />
<br />
&lt;dt id="monitor"&gt;1. Monitor&lt;/dt&gt;<br />
<br />
<br />
<br />
&lt;dd id="monitorDef"&gt;&lt;a href="#"&gt;&lt;span&gt;Here's my 17" Monitor.  I wish I had an LCD!&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;<br />
<br />
<br />
<br />
&lt;dt id="phone"&gt;2. Phone&lt;/dt&gt;<br />
<br />
<br />
<br />
&lt;dd id="phoneDef"&gt;&lt;a href="#"&gt;&lt;span&gt;Does this thing ever stop ringing?&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;<br />
<br />
<br />
<br />
&lt;dt id="case"&gt;3. PC Case&lt;/dt&gt;<br />
<br />
<br />
<br />
&lt;dd id="caseDef"&gt;&lt;a href="#"&gt;&lt;span&gt;This is my crazy Linux box! Gotta love that Linux...&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;<br />
<br />
<br />
<br />
&lt;dt id="notebook"&gt;4. IBM ThinkPad&lt;/dt&gt;<br />
<br />
<br />
<br />
&lt;dd id="notebookDef"&gt;&lt;a href="#"&gt;&lt;span&gt;Here's my Linux notebook.  Some crazy coding going on.&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;<br />
<br />
<br />
<br />
&lt;dt id="floppy"&gt;5. External Floppy Drive&lt;/dt&gt;<br />
<br />
<br />
<br />
&lt;dd id="floppyDef"&gt;&lt;a href="#"&gt;&lt;span&gt;Floppy Drive.  Ancient... I know!&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;<br />
<br />
<br />
<br />
&lt;/dl&gt;<br />
<br />
<br />
<br />
</code><br />
<br />
<br />
<br />
</pre>
</div>
<br />
<div>
<p>A working example can be viewed below (the image below was taken from <a href="http://www.kryogenix.org/">The Daily Kryogenix</a>):
</p>
</div>
<div style="float: right; width: 500px; margin-right: 10px;">
<fieldset>
<legend>Advertisement</legend>
<script type="text/javascript"><!--
google_ad_client = "pub-1434601654158176";
/* FrankManno.com - Ideas */
google_ad_slot = "0905025301";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script>google_protectAndRun("ads_core.google_render_ad", google_handleError, google_render_ad);</script>
</fieldset>
</div>
<div id="ex">
<img src="http://www.frankmanno.com/ideas/css-imagemap/office_noCSS.jpg" class="image" alt="My Office" height="262" width="350" />
<dl id="officeMap"><dt id="monitor">1. Monitor</dt><dd id="monitorDef"><a href="http://www.frankmanno.com/ideas/css-imagemap/#">Here's my 17" Monitor.  I wish I had an LCD!</a></dd><dt id="phone">2. Phone</dt><dd id="phoneDef"><a href="http://www.frankmanno.com/ideas/css-imagemap/#">Does this thing ever stop ringing?</a></dd><dt id="case">3. PC Case</dt><dd id="caseDef"><a href="http://www.frankmanno.com/ideas/css-imagemap/#">This is my crazy Linux box! Gotta love that Linux...</a></dd><dt id="notebook">4. IBM ThinkPad</dt><dd id="notebookDef"><a href="http://www.frankmanno.com/ideas/css-imagemap/#">Here's my Linux notebook.  Some crazy coding going on.</a></dd><dt id="floppy">5. External Floppy Drive</dt><dd id="floppyDef"><a href="http://www.frankmanno.com/ideas/css-imagemap/#">Floppy Drive.  Ancient... I know!</a></dd></dl>
</div>
<div>
<p>While this may not be the most "ideal" solution out there, it certainly expands upon the examples
listed above.  I absolutely loved Gina's idea, which is why I attempted to expand on it.  Unfortunately,
with the current limitations of CSS (as well as certain browsers), I wasn't able to fully replicate the
exact functionality of Gina's example.</p>
<p>Here's <a href="http://www.frankmanno.com/ideas/css-imagemap/index_js.html">an example</a>
that makes use of both CSS and Javascript.  One problem I ran into is
when CSS is
disabled, but Javascript is enabled.  Something weird occurs with the
definition list.  If you know how to correct this, let me know.
I'd love to get it working.</p>
<p>I did manage to come across <a href="http://evan.nixsys.bz/note/">another attempt at a CSS-based image map</a>, which looks really great.  Unfortunately,
due to IE's limitations (specifically with only support of the <code>:hover</code> effect on the <code>&lt;a&gt;</code> tag),
it's not cross-browser compatible (yet!).</p>
<p>If you have any questions, concerns, and/or suggestions for improvement, please feel free to send me a note: <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#102;&#114;&#97;&#110;&#107;&#109;&#97;&#110;&#110;&#111;&#91;&#45;&#97;&#116;&#45;&#93;&#103;&#109;&#97;&#105;&#108;&#91;&#45;&#100;&#111;&#116;&#45;&#93;&#99;&#111;&#109;">frankmanno [-at-] gmail [-dot-] com</a> or leave a comment on <a href="http://blog.frankmanno.com/">my blog</a>.</p>
<p>The examples have been succesfully tested in Safari, Firefox
(Mac/Win), IE6/Win, and Opera 7.5/Mac.  For some odd reason, the
Javascript 	version works in IE5/Mac, whereas the non-Javascript version
doesn't.</p>
</div>
<div id="footer">
Copyright &#169; 2004-2010 <a href="http://www.frankmanno.com/">Frank Manno</a>.
</div>
<img src ="http://www.blogjava.net/sealyu/aggbug/328621.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-08-12 10:47 <a href="http://www.blogjava.net/sealyu/archive/2010/08/12/328621.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>CSS样式首字母黑体加大 </title><link>http://www.blogjava.net/sealyu/archive/2010/05/25/321869.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Tue, 25 May 2010 15:05:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/05/25/321869.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/321869.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/05/25/321869.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/321869.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/321869.html</trackback:ping><description><![CDATA[<div>
<p style="text-indent: 2em;">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN" "http://bbs.blueidea.com/index.php"&gt;</p>
<p style="text-indent: 2em;">&lt;html
xmlns="http://bbs.blueidea.com/index.php"&gt;</p>
<p style="text-indent: 2em;">&lt;head&gt;</p>
<p style="text-indent: 2em;">&lt;meta
http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;</p>
<p style="text-indent: 2em;">&lt;title&gt;test&lt;/title&gt;</p>
<p style="text-indent: 2em;">&lt;style type="text/<span id="1_1">css</span>"&gt;</p>
<p style="text-indent: 2em;">* {</p>
<p style="text-indent: 2em;">margin:0;</p>
<p style="text-indent: 2em;">padding:0;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">body {</p>
<p style="text-indent: 2em;">font-family:"宋体",Arial, Helvetica,
sans-serif;</p>
<p style="text-indent: 2em;">font-size:small;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">p:first-letter
{</p>
<p style="text-indent: 2em;">font-weight:bold;</p>
<p style="text-indent: 2em;">color:blue;</p>
<p style="text-indent: 2em;">font-size:200%;</p>
<p style="text-indent: 2em;">}</p>
<p style="text-indent: 2em;">&lt;/style&gt;</p>
<p style="text-indent: 2em;">&lt;/head&gt;</p>
<p style="text-indent: 2em;">&lt;body&gt;</p>
<p style="text-indent: 2em;">&lt;p&gt;9.0text&lt;/p&gt;</p>
<p style="text-indent: 2em;">&lt;p&gt;9.0text&lt;/p&gt;</p>
<p style="text-indent: 2em;">&lt;p&gt;9.0text&lt;/p&gt;</p>
<p style="text-indent: 2em;">&lt;/body&gt;</p>
<p style="text-indent: 2em;">&lt;/html&gt;</p>
</div>
<img src ="http://www.blogjava.net/sealyu/aggbug/321869.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-05-25 23:05 <a href="http://www.blogjava.net/sealyu/archive/2010/05/25/321869.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>CSS首字母大些 TEXT(转)</title><link>http://www.blogjava.net/sealyu/archive/2010/05/25/321868.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Tue, 25 May 2010 15:04:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/05/25/321868.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/321868.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/05/25/321868.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/321868.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/321868.html</trackback:ping><description><![CDATA[<strong>首字母大些1</strong>
<div>
<div id="code0">
<ol>
    <li>&lt;!DOCTYPE
    html PUBLIC "-//W3C//DTD X<span href="http://webdesign.9xue.org/tag.php?name=HTML" onclick="tagshow(event)" class="t_tag">HTML</span> 1.0 Strict//EN"&nbsp; &nbsp; &nbsp; &nbsp;
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;<br />
    </li>
    <li>&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt;<br />
    </li>
    <li>&lt;head&gt;<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;<span href="http://webdesign.9xue.org/tag.php?name=title" onclick="tagshow(event)" class="t_tag">title</span>&gt;Drop Caps
    1&lt;/title&gt;<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;style type="text/css" media="all"&gt;<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; body {font: 100%/1.5 arial, helvetica, sans-serif;}<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; .firstletter {float: left;font-size: 3em;line-height:
    1;font-weight: bold;margin-right: 0.2em;}<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/style&gt;<br />
    </li>
    <li>&lt;/head&gt;<br />
    </li>
    <li>&lt;body&gt;<br />
    </li>
    <li>&lt;p&gt;&lt;span <span href="http://webdesign.9xue.org/tag.php?name=class" onclick="tagshow(event)" class="t_tag">class</span>="firstletter"&gt;O&lt;/span&gt;nce
    upon a time in a blueberry bubblegum land covered in pink violets that
    swayed to the rhythm of "My Baby Just Cares for Me" there lived a podgy
    yet attractive raspberry fairy called Bedooda. Bedooda was as tall as a
    button bush and as intelligent as a peach mystic from the Unscented
    Hills (not the Scented Hills - the mystics there were not too bright)
    and was an adored member of the raspberry family but she was an unhappy
    raspberry fairy. As unhappy as a lost sunfish from the Sweet Spaghetti
    River.&lt;/p&gt;<br />
    </li>
    <li>&lt;/body&gt;<br />
    </li>
    <li>&lt;/html&gt;</li>
</ol>
</div>
<em onclick="copycode($('code0'));">复制<span href="http://webdesign.9xue.org/tag.php?name=%B4%FA%C2%EB" onclick="tagshow(event)" class="t_tag">代码</span></em></div>
<strong>首字母大些
2</strong>使用图片
<div>
<div id="code1">
<ol>
    <li>&lt;!DOCTYPE
    html PUBLIC "-//W3C//DTD <span href="http://webdesign.9xue.org/tag.php?name=XHTML" onclick="tagshow(event)" class="t_tag">XHTML</span> 1.0 Strict//EN"&nbsp; &nbsp; &nbsp;
    &nbsp; "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;<br />
    </li>
    <li>&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt;<br />
    </li>
    <li>&lt;head&gt;<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;title&gt;Drop Caps 2&lt;/title&gt;<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;style type="text/css" media="all"&gt;<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; body {font: 15px/2 arial, helvetica, sans-serif;}<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; .firstletter {width: 40px;&nbsp; &nbsp; &nbsp; &nbsp; height: 50px;float:
    left;display: block;text-indent: -999em;background:
    url(http://www.htmldog.com/examples/images/o.gif);margin: 0 8px 8px 0;}<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/style&gt;<br />
    </li>
    <li>&lt;/head&gt;<br />
    </li>
    <li>&lt;body&gt;<br />
    </li>
    <li>&lt;p&gt;&lt;span class="firstletter"&gt;O&lt;/span&gt;nce upon
    a time in a blueberry bubblegum land covered in pink violets that
    swayed to the rhythm of "My Baby Just Cares for Me" there lived a podgy
    yet attractive raspberry fairy called Bedooda. Bedooda was as tall as a
    button bush and as intelligent as a peach mystic from the Unscented
    Hills (not the Scented Hills - the mystics there were not too bright)
    and was an adored member of the raspberry family but she was an unhappy
    raspberry fairy. As unhappy as a lost sunfish from the Sweet Spaghetti
    River.&lt;/p&gt;<br />
    </li>
    <li>&lt;/body&gt;<br />
    </li>
    <li>&lt;/html&gt;</li>
</ol>
</div>
<em onclick="copycode($('code1'));">复制代码</em></div>
<strong>首字母大些3</strong>使用
伪<span href="http://webdesign.9xue.org/tag.php?name=%D4%AA%CB%D8" onclick="tagshow(event)" class="t_tag">元素</span>
<div>
<div id="code2">
<ol>
    <li>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Strict//EN"&nbsp; &nbsp; &nbsp; &nbsp;
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;<br />
    </li>
    <li>&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt;<br />
    </li>
    <li>&lt;head&gt;<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;title&gt;Drop Caps 3 (using
    'first-letter')&lt;/title&gt;<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;style type="text/css" media="all"&gt;<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; body {font: 100%/1.5 arial, helvetica, sans-serif;}<br />
    </li>
    <li>p:first-letter {float: left;font-size: 3em;line-height:
    1;font-weight: bold;margin-right: 0.2em;}<br />
    </li>
    <li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/style&gt;<br />
    </li>
    <li>&lt;/head&gt;<br />
    </li>
    <li>&lt;body&gt;<br />
    </li>
    <li>&lt;p&gt;Once upon a time in a blueberry bubblegum land covered
    in pink violets that swayed to the rhythm of "My Baby Just Cares for
    Me" there lived a podgy yet attractive raspberry fairy called Bedooda.
    Bedooda was as tall as a button bush and as intelligent as a peach
    mystic from the Unscented Hills (not the Scented Hills - the mystics
    there were not too bright) and was an adored member of the raspberry
    family but she was an unhappy raspberry fairy. As unhappy as a lost
    sunfish from the Sweet Spaghetti River.&lt;/p&gt;<br />
    </li>
    <li>&lt;/body&gt;<br />
    </li>
    <li>&lt;/html&gt;</li>
</ol>
</div>
<em onclick="copycode($('code2'));">复制代码</em></div>
<img src ="http://www.blogjava.net/sealyu/aggbug/321868.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-05-25 23:04 <a href="http://www.blogjava.net/sealyu/archive/2010/05/25/321868.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>让 IE6, 7和 8支持CSS3 (转)</title><link>http://www.blogjava.net/sealyu/archive/2010/04/28/319641.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Wed, 28 Apr 2010 13:42:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/04/28/319641.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/319641.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/04/28/319641.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/319641.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/319641.html</trackback:ping><description><![CDATA[<div id="news_content">
<p>我们都知道IE6，7并不支持CSS3的属性，IE8也不能很好的支持CSS3。但是有一个小脚本能够做到，它可以让IE支持
CSS3，包括：border-radius (rounded), box-shadow ( shadow), text-shadow等&#8230;&#8230;</p>
<p>如果你需要一个支持CSS3 的box content，你需要添加一行代码：</p>
<p><strong>behavior: url(ie-css3.htc);</strong></p>
<p>代码：</p>
<p>.box {</p>
<p>&nbsp;&nbsp;-moz-border-radius: 15px; /* Firefox */</p>
<p>&nbsp;&nbsp;-webkit-border-radius: 15px; /* Safari and Chrome */</p>
<p>&nbsp;&nbsp;border-radius: 15px; /* Opera 10.5+, future browsers, and now also
Internet Explorer 6+ using IE-CSS3 */</p>
<p>&nbsp;&nbsp;-moz-box-shadow: 10px 10px 20px #000; /* Firefox */</p>
<p>&nbsp;&nbsp;-webkit-box-shadow: 10px 10px 20px #000; /* Safari and Chrome */</p>
<p>&nbsp;&nbsp;box-shadow: 10px 10px 20px #000; /* Opera 10.5+, future browsers
and IE6+ using IE-CSS3 */</p>
<p><strong><br />
</strong></p>
<p><strong>&nbsp;&nbsp;behavior: url(ie-css3.htc); /* This lets IE know to call
the script on all elements which get the 'box' class */</strong></p>
<p><strong>}</strong></p>
<p>下载此脚本：<a href="http://fetchak.com/ie-css3/ie-css3.htc">http://fetchak.com/ie-css3/ie-css3.htc</a></p>
<p style="text-align: center;"><br />
<img src="http://dl.javaeye.com/upload/attachment/240009/091eb20b-2a03-3379-b20d-79e6377332a0.jpg" alt="" /></p>
<p><strong>点击查看详情：</strong><a href="http://fetchak.com/ie-css3/"><strong>http://fetchak.com/ie-css3/</strong></a></p>
</div>
<img src ="http://www.blogjava.net/sealyu/aggbug/319641.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-04-28 21:42 <a href="http://www.blogjava.net/sealyu/archive/2010/04/28/319641.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>CSS Color Names</title><link>http://www.blogjava.net/sealyu/archive/2010/04/06/317543.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Tue, 06 Apr 2010 05:26:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/04/06/317543.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/317543.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/04/06/317543.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/317543.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/317543.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: The table below provides a list of the color names that are supportedby all major browsers.Click on a color name (or a hex value) to view the color as thebackground-coloralong with different t...&nbsp;&nbsp;<a href='http://www.blogjava.net/sealyu/archive/2010/04/06/317543.html'>阅读全文</a><img src ="http://www.blogjava.net/sealyu/aggbug/317543.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-04-06 13:26 <a href="http://www.blogjava.net/sealyu/archive/2010/04/06/317543.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>99款高质量免费(X)HTML/CSS模板（转）</title><link>http://www.blogjava.net/sealyu/archive/2010/03/19/315925.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Fri, 19 Mar 2010 06:49:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/03/19/315925.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/315925.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/03/19/315925.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/315925.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/315925.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 大家都清楚一个网站象征着你和你的品牌，这取决于你如何构建自己的网站。正因为Wordpress越来越受到互联网设计群体的关注，它并不代表最基本的(X)HTML/CSS很丑、很杂乱和单调。彬Go将向大家推荐99个高质量的免费(X)HTML/CSS模板，你可以用于自己或公司企业的网站。您还可以参考以下(X)HTML/CSS相关教程及资源:《30个基于CSS的导航和按钮优秀设计教程》《20...&nbsp;&nbsp;<a href='http://www.blogjava.net/sealyu/archive/2010/03/19/315925.html'>阅读全文</a><img src ="http://www.blogjava.net/sealyu/aggbug/315925.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-03-19 14:49 <a href="http://www.blogjava.net/sealyu/archive/2010/03/19/315925.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>你需要了解的21个CSS惊人技巧(转)</title><link>http://www.blogjava.net/sealyu/archive/2010/03/19/315920.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Fri, 19 Mar 2010 06:36:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/03/19/315920.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/315920.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/03/19/315920.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/315920.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/315920.html</trackback:ping><description><![CDATA[<span  style="color: #35383d; font-family: 微软雅黑, 宋体, ，Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 12px; line-height: 17px; ">
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; ">　级联样式表(CSS)在当代Web设计中已经成为重要的环节，如果没有<a href="http://blog.bingo929.com/category/technology/css" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">CSS</a>现在的网站将像10年前一样不堪入目。随着<a href="http://blog.bingo929.com/tag/divcss" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">CSS</a>技术的普及，越来越多的高质量CSS教程涌入互联网，让我们的学习更加方便。下面彬Go向大家推荐21个惊人的CSS技巧，相信其中必有你想不到的。还等什么，继续往下看吧！<br />
<br />
<strong><span style="color: #ff6600; ">您还可以参考以下CSS相关教程及资源:</span></strong><br />
《<a href="http://blog.bingo929.com/css-sprites-css-techniques-tools-tutorials.html" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">CSS Sprites(CSS图像拼合技术)教程、工具集合</a>》<br />
《<a href="http://blog.bingo929.com/css-div-css-xhtml-css.html" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">学无止境的CSS(xHTML+CSS技巧教程资源大全)</a>》<br />
《<a href="http://blog.bingo929.com/30-css-tec-examples.html" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">精选30个优秀的CSS技术和实例</a><br />
《<a href="http://blog.bingo929.com/spice-up-your-images-with-css-5-way.html" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">使用CSS为图片添加更多趣味的5种方法</a>》</p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">1.<a target="_blank" href="http://www.cssplay.co.uk/menu/slide_show" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">CSS跨浏览器幻灯片</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><a target="_blank" href="http://blog.bingo929.com/wp-content/uploads/2009/10/cross-browser-slide-show.jpg" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/cross-browser-slide-show-500x331.jpg" alt="跨浏览器CSS幻灯片" title="跨浏览器CSS幻灯片" width="500" height="331" class="alignnone size-medium wp-image-2726" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></a><br />
<em>点击上图查看清晰原图</em><br />
演示了如何仅适用CSS打造一个跨浏览器的图片画廊</p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">2.<a target="_blank" href="http://www.frankmanno.com/ideas/css-imagemap/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">基于CSS的图片地图</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/CSS-only-image-map.jpg" alt="CSS-图片地图" title="CSS-图片地图" width="341" height="261" class="alignnone size-full wp-image-2731" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /><br />
这个教程演示了如何使用纯CSS创建一个&#8221;疯狂&#8221;的图片地图。</p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">3.<a target="_blank" href="http://www.cssplay.co.uk/menu/lightbox-hover.html" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">纯CSS无JavaScript的LightBox</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><a target="_blank" href="http://blog.bingo929.com/wp-content/uploads/2009/10/Css-Only-LightBox.jpg" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/Css-Only-LightBox-499x255.jpg" alt="纯CSS无JavaScript的LightBox" title="纯CSS无JavaScript的LightBox" width="499" height="255" class="alignnone size-medium wp-image-2732" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></a><br />
<em>点击上图查看清晰原图</em></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">4.<a target="_blank" href="http://www.ampsoft.net/webdesign-l/image-button.html" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">CSS图片替换技术制作的按钮</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><a href="http://blog.bingo929.com/" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/image-replacement-submit-button.jpg" alt="CSS图片替换技术制作的按钮" title="CSS图片替换技术制作的按钮" width="439" height="99" class="alignnone size-full wp-image-2736" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></a><br />
使用CSS将表单提交按钮替换为图片，如果禁用CSS将变回普通按钮。</p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">5.<a target="_blank" href="http://www.pmob.co.uk/pob/animated.htm" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">用CSS实现动画导航菜单</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/animated-navigation-menu.jpg" alt="CSS-导航菜单-动画" title="CSS-导航菜单-动画" width="318" height="71" class="alignnone size-full wp-image-2724" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">6.<a target="_blank" href="http://www.zabdesign.de/pro/public/sitemap/sitemap-styled.html" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">用CSS创建类似树形导航菜单</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/tree-like-navigation.png" alt="CSS-树形导航" title="CSS-树形导航" width="334" height="247" class="alignnone size-full wp-image-2723" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">7.<a target="_blank" href="http://www.zabdesign.de/pro/public/sitemap/sitemap-styled.html" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">CSS渐变文字效果</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/css-gradient-effect.jpg" alt="CSS渐变文字效果" title="CSS渐变文字效果" width="477" height="147" class="alignnone size-full wp-image-2728" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">8.<a target="_blank" href="http://www.webdesignerwall.com/tutorials/css-menu-list-design/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">CSS目录菜单设计</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><a target="_blank" href="http://blog.bingo929.com/wp-content/uploads/2009/10/CSS-Menu-List.png" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/CSS-Menu-List-500x169.png" alt="CSS-目录菜单" title="CSS-目录菜单" width="500" height="169" class="alignnone size-medium wp-image-2730" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></a><br />
<em>点击上图查看清晰原图</em><br />
很容易理解的关于使用CSS border属性或CSS背景图属性实现目录菜单的教程。</p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">9.<a target="_blank" href="http://www.alistapart.com/articles/negativemargins/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">使用CSS负margin创建自适应布局</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/liquid-web-layout-css-500x177.jpg" alt="CSS负margin创建自适应布局" title="CSS负margin创建自适应布局" width="500" height="177" class="alignnone size-medium wp-image-2737" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">10.<a target="_blank" href="http://fortysevenmedia.com/blog/archives/making_your_footer_stay_put_with_css/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">使用CSS固定你的页脚</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><a href="http://blog.bingo929.com/wp-content/uploads/2009/10/broken.jpg" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/broken-500x389.jpg" alt="CSS-固定-页脚" title="CSS-固定-页脚" width="500" height="389" class="alignnone size-medium wp-image-2747" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></a><br />
<em>点击上图查看清晰原图</em><br />
你也许会遇到这种情况:当你为每个页面设置相同的页脚后，有些页面的主题内容量很少，使得页脚自动向上移动，看上去的浏览器下面很空。这个教程将教你如何使用CSS固定页脚在页面底部来解决这个头疼的问题。</p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">11.<a target="_blank" href="http://veerle.duoh.com/blog/comments/simple_scalable_css_based_breadcrumbs/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">简单、灵活的CSS面包屑导航</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/scalable-breadcrumb-navigation.jpg" alt="CSS-面包屑-导航" title="CSS-面包屑-导航" width="356" height="45" class="alignnone size-full wp-image-2740" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">12.<a target="_blank" href="http://www.pearsonified.com/2006/09/snazzy_pullquotes_for_your_blo.php" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">&nbsp;为你的博客创建时髦的引用(Pullquotes)</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><a href="http://blog.bingo929.com/wp-content/uploads/2009/10/pullquotes-css.png" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/pullquotes-css-500x157.png" alt="pullquotes-css" title="pullquotes-css" width="500" height="157" class="alignnone size-medium wp-image-2739" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></a></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">13.<a target="_blank" href="http://www.thewojogroup.com/2008/12/css-stacked-bar-graphs/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">CSS实现的柱状图表</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/stacked-bar-graph.jpg" alt="CSS-图表" title="CSS-图表" width="444" height="305" class="alignnone size-full wp-image-2741" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">14.<a target="_blank" href="http://www.smileycat.com/miaow/archives/000230.php" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">如何为链接列表创建块级悬停效果</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/Block-Hover-CSS-List.png" alt="CSS-技巧" title="CSS-技巧" width="414" height="286" class="alignnone size-full wp-image-2725" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">15.<a target="_blank" href="http://www.alistapart.com/articles/multicolumnlists" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">CSS多列列表</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/Multi-Column-Lists.png" alt="CSS多列列表" title="CSS多列列表" width="458" height="133" class="alignnone size-full wp-image-2738" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">16.<a target="_blank" href="http://css-tricks.com/date-display-with-sprites/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">用CSS Sprites技术实现日期显示</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/Display-Date-Using-Sprites.png" alt="用CSS Sprites技术实现日期显示" title="用CSS Sprites技术实现日期显示" width="417" height="165" class="alignnone size-full wp-image-2734" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">17.<a target="_blank" href="http://css-tricks.com/date-badges-and-comment-bubbles-for-your-blog/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">使用CSS美化你的日期和评论</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/date-comment-badges.jpg" alt="CSS" title="CSS" width="269" height="172" class="alignnone size-full wp-image-2733" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">18.<a target="_blank" href="http://www.devirtuoso.com/2009/07/how-to-build-a-css-image-viewer-the-clever-way/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">使用CSS创建图片浏览器</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><a href="http://blog.bingo929.com/wp-content/uploads/2009/10/CSS-Image-viewer.jpg" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/CSS-Image-viewer-500x296.jpg" alt="CSS-图片浏览器" title="CSS-图片浏览器" width="500" height="296" class="alignnone size-medium wp-image-2729" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></a><br />
<em>点击上图查看清晰原图</em></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">19.<a target="_blank" href="http://www.devirtuoso.com/2009/07/creating-a-css-image-preloader/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">创建CSS图片预载</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; ">无需JavaScript，仅使用CSS背景图属性实现图片的预载。</p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">20.<a target="_blank" href="http://css-tricks.com/css-trick-fade-out-the-bottom-of-pages-with-a-fixed-position-image/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">从页面底部淡出效果</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><a href="http://blog.bingo929.com/wp-content/uploads/2009/10/Fade-Out-Bottom.jpg" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/Fade-Out-Bottom-500x236.jpg" alt="CSS-淡出" title="CSS-淡出" width="500" height="236" class="alignnone size-medium wp-image-2735" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></a><br />
<em>点击上图查看清晰原图</em></p>
<h3 style="font-family: 'Trebuchet MS'; display: block; width: 510px; height: 1.4em; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #e4e4e4; font: normal normal bold 1.6em/normal 微软雅黑; overflow-x: hidden; overflow-y: hidden; ">21.<a target="_blank" href="http://www.cssnewbie.com/12-creative-and-cool-uses-for-the-css-border-property/" style="text-decoration: none; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; ">创意且很酷的CSS边框属性</a></h3>
<p style="font-size: 1.2em; line-height: 1.4em; color: #000000; letter-spacing: 0.05em; "><a href="http://blog.bingo929.com/wp-content/uploads/2009/10/CSS-Border-Property.jpg" style="text-decoration: underline; color: #00a0e3; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "><img src="http://blog.bingo929.com/wp-content/uploads/2009/10/CSS-Border-Property-500x175.jpg" alt="CSS-Border-属性" title="CSS-Border-属性" width="500" height="175" class="alignnone size-medium wp-image-2727" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-width: initial; border-color: initial; text-align: center; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; " /></a></p>
<div><br />
</div>
</span>
<img src ="http://www.blogjava.net/sealyu/aggbug/315920.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-03-19 14:36 <a href="http://www.blogjava.net/sealyu/archive/2010/03/19/315920.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title> IE6、IE7、FireFox CSS兼容的min-height语法（转）</title><link>http://www.blogjava.net/sealyu/archive/2010/03/18/315750.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Thu, 18 Mar 2010 01:56:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/03/18/315750.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/315750.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/03/18/315750.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/315750.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/315750.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 老旧的IE6不支持很多CSS语法，而其中的一些又是非常有用的，例如min-height、min-width、max-height、max-width等。利用IE独有的样式表达式语法就能解决这一问题。position: fixed;#position: fixed;_position: absolute;第一排给Firefox以及其他浏览器看第二排给IE7（可能以后的IE8、IE...&nbsp;&nbsp;<a href='http://www.blogjava.net/sealyu/archive/2010/03/18/315750.html'>阅读全文</a><img src ="http://www.blogjava.net/sealyu/aggbug/315750.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-03-18 09:56 <a href="http://www.blogjava.net/sealyu/archive/2010/03/18/315750.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>电子商务类站点终极资源大全（转）</title><link>http://www.blogjava.net/sealyu/archive/2010/02/25/313865.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Thu, 25 Feb 2010 03:04:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/02/25/313865.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/313865.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/02/25/313865.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/313865.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/313865.html</trackback:ping><description><![CDATA[<span style="line-height: normal; font-size: 12px;">
<p>电
子商务网站和普通网站一样，需要良好的设计，除此之外，电子商务站点还有许多额外的东西需要考虑，后台支撑程序，购物车，结算，产品目录，产品搜索与导
航，一个优秀的电子商务站点会引导用户快速找到他们需要的货品并顺畅地完成购买。本文搜集了上百种与电子商务网站设计相关的资源。</p>
<p style="margin: 0px 0px 1em; padding: 0px;"><img style="margin: 0px; padding: 0px;" src="http://www.netlogical.com/images/e-commerce.jpg" alt="" width="450" height="358" /><br style="margin: 0px; padding: 0px;" />
1. 设计灵感与借鉴资源&nbsp;<br style="margin: 0px; padding: 0px;" />
<strong style="margin: 0px; padding: 0px;">A。通用资源</strong><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://tutorialblog.org/20-of-the-best-ecommerce-websites/">20 of the Best e-commerce Websites</a>&nbsp;- 20 个最佳电子商务网站<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/20ofthebestecommercewebsites.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://cartcraze.com/">Cart Craze</a>&nbsp;&#8211; 电子商务网站设计展示<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/cartcraze.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://inspectelement.com/articles/23-excellent-examples-of-how-to-design-online-stores/">23 Excellent Examples of How to Design Online Stores</a>&nbsp;&#8211; 25个优秀的电子商务网站设计案例<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/examplesofhowtodesignonlinestores.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://dzineblog.com/2008/05/20-well-designed-ecommerce-websites.html">20 Well Designed E-Commerce Websites</a>&nbsp;&#8211; 20 个设计出众的电子商务网站<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/welldesignedecommercewebsites.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://vandelaydesign.com/blog/galleries/ecommerce-websites/">50 Inspirational e-commerce Website Designs</a>&nbsp;&#8211; 50 个电子商务网站设计样例<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/inspirationalecommercedesigns.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://vandelaydesign.com/blog/galleries/ecommerce-ui/">35 Excellent e-commerce User Interface Designs</a>&nbsp;&#8211; 35个出色的电子商务类站点UI设计<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/ecommerceuidesigns.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
B. 按钮&nbsp;<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.getelastic.com/add-to-cart-buttons/">107 Add to Cart Buttons of the Top Online Retailers</a>&nbsp;&#8211; 107 个购物车按钮设计<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/107addtocartbuttons.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://sixrevisions.com/design-showcase-inspiration/80-examples-of-add-to-cart-buttons-for-design-inspiration/">80 Examples of Add to Cart Buttons for Design Inspiration</a>&nbsp;&#8211; 80个购物车按钮设计样例<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/80addtocartbuttons.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.webdesigndev.com/inspiration/20-ecommerce-add-to-cart-buttons-for-your-inspiration">20 e-commerce Add To Cart Buttons For Your Inspiration</a>&nbsp;&#8211; 20个购物车按钮展示<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/20addtocartbuttons.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://vandelaydesign.com/blog/galleries/add-to-cart/">"Add to Cart" Button Showcase</a>&nbsp;&#8211; 购物车按钮展示<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/addtocartshowcase.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
2. 购物车与电子商务平台 A. 独立购物车&nbsp;<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.prestashop.com/">PrestaShop</a>&nbsp;&#8211; 一个免费，开源购物车，灵活，界面直观。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/prestashop.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.opencart.com/">OpenCart</a>&nbsp;&#8211; 基于 PHP 的免费，开源购物车。支持产品预览，自动图片尺寸，支持可下载类虚拟产品。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/opencart.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.magentocommerce.com/">Magento</a>&nbsp;&#8211; 开源电子商务平台，包含免费的社区版和收费的企业版。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/magento.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.cubecart.com/">CubeCart</a>&nbsp;&#8211; 购物车程序，有两个版本，包括一个免费版。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/cubecart.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.zen-cart.com/">Zen Cart</a>&nbsp;&#8211; 免费开源购物车，包括各种免费扩展。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/zencart.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.oscommerce.com/">osCommerce</a>&nbsp;&#8211; 开源，免费的购物车，已经应用到超过 225000 在线商店。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/oscommerce.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.digistore.co.nz/">Digistore</a>&nbsp;&#8211; 基于 osCommerce 的免费，开源购物车。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/digistore.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.storesprite.com/">StoreSprite</a>&nbsp;&#8211; 一个免费但功能强大的，基于 PHP/MySQL 的购物车。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/storesprite.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.bosscart.com/">BossCart</a>&nbsp;&#8211; 基于 PHP 的购物车，含免费版和高级收费版。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/bosscart.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.fatfreecart.com/">FatFreeCart</a>&nbsp;&#8211; 一个通过复制粘贴代码就能实现的购物车，支持 Paypal 和 Google Checkout，无需注册和安装。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/fatfreecart.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
C. 插件&nbsp;<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.instinct.co.nz/e-commerce/">WordPress e-Commerce</a>&nbsp;&#8211; 用于 WordPress 的免费，开源电子商务插件。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/wpecommerce.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://shopplugin.net/">Shopp</a>&nbsp;&#8211; 用于 WordPress 的超简单的购物车插件。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/shopp.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.ubercart.org/">Ubercart</a>&nbsp;&#8211; 用于 Drupal 5/6 的购物车插件。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/ubercart.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.drupalecommerce.org/">Drupal e-Commerce</a>&nbsp;&#8211; 用于 Drupal 的电子商务插件，支持 Paypal，Authorize.net 以及其它支付方式。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/drupalecommerce.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://virtuemart.net/">VirtueMart</a>&nbsp;&#8211; 用于 Joomla 的免费购物车。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/virtuemart.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.seber.com.au/downloads/SeberCart.aspx">Seber Cart</a>&nbsp;&#8211; 用于 Joomla 的小巧，易用的购物车。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/sebercart.jpg" alt="" /><br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<a style="margin: 0px; padding: 0px; color: #003366; text-decoration: none;" href="http://www.thumbdo.com/products/joomla-jquery-cart">Joomla jQuery Cart</a>&nbsp;&#8211; JCart 是一个易于安装，定制的，免费的 Ajax 购物车。<br style="margin: 0px; padding: 0px;" />
<br style="margin: 0px; padding: 0px;" />
<img style="margin: 0px; padding: 0px;" src="http://media02.hongkiat.com/e-commerce-design-roundup/jcart.jpg" alt="" /></p>
<p style="margin: 0px 0px 1em; padding: 0px;"><br />
</p>
</span>
<p>这是<a href="http://www.javaeye.com/news/13510">电子商务类站点终极资源大全</a>的第二部分，本部分搜集的是海量的设计资源，包含与电子商务网站设计相关的模板，主题，图标，素材等。本文的第一第三部分请参阅：电子商务类站点终 极资源大全（<a href="http://www.javaeye.com/news/13510">上</a>）（下）。</p>
<p><img src="http://www.netlogical.com/images/e-commerce.jpg" alt="" width="450" height="358" /></p>
<h3>3. 图标与设计素材</h3>
<h4>A. 电子商务网站主题</h4>
<p><a href="http://www.smashingmagazine.com/2009/01/25/35-free-high-quality-e-commerce-templates/">35  Free High-Quality E-Commerce Templates</a> &#8211; Smashing Magazine 搜集的非常出色的电子商务网站主题。</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/35freetemplates.jpg" alt="" /></p>
<p><a href="http://www.smashingmagazine.com/2009/05/05/25-magento-templates-for-your-e-commerce-business/">25  Magento Templates for Your E-Commerce Business</a> &#8211; 25 套 Magento 主题</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/25magentotemplates.jpg" alt="" /></p>
<p><a href="http://blogicthink.com/best-ecommerce-wordpress-themes-templates-icons-flash-sites-collection-evanto/">20+  Best e-commerce (WordPress Themes, Templates, Icons, Flash Sites)  Collection</a> &#8211; 最佳电子商务主题集。</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/20bestecommercecollection.jpg" alt="" /></p>
<p><a href="http://themeforest.net/item/the-clothes-shop-wordpress-ecommerce/64132">The  Clothes Shop Theme</a> &#8211; 基于 WP 的布艺网店主题。</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/clothesshop.jpg" alt="" /></p>
<p><a href="http://themeforest.net/item/the-furniture-store-wordpress-ecommerce-shop/69996">The  Furniture Store Theme</a> &#8211; 基于 WP 的家居网店主题。</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/furniturestore.jpg" alt="" /></p>
<p><a href="http://themeforest.net/item/envirashop-ecommerce-wordpress-theme/73265">enVirashop</a> &#8211; 用于 WP 的电子商务主题</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/envirashop.jpg" alt="" /></p>
<p><a href="http://themeforest.net/item/wpshop-reloaded-wordpress-ecommerce/53051">wpShop  Reloaded</a> &#8211; 一套 WP 网店主题</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/wpshop.jpg" alt="" /></p>
<p><a href="http://themeforest.net/item/rgbstore-ecommerce-html-template/67270">RGBSTore  e-commerce</a> &#8211; 一套电子商务 HTML 模板，支持 Magento, osCommerce, Zen Cart 等</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/rgbstore.jpg" alt="" /></p>
<p><a href="http://themeforest.net/item/boutique/74689">Boutique</a> &#8211;  一套优雅的电子商务 HTML 模板</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/boutique.jpg" alt="" /></p>
<p><a href="http://themeforest.net/item/sancart-opencart-template/59996">Sancart</a> &#8211; 一套简单的 OpenCart 模板</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/sancart.jpg" alt="" /></p>
<p><a href="http://themeforest.net/item/oscomm-ecommerce-template/58903">OScomm  E-Commerce Template</a> &#8211; 一套 e-commerce HTML 模板</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/oscomm.jpg" alt="" /></p>
<p><a href="http://themeforest.net/item/classyshop/43948">ClassyShop</a> &#8211; 使用 960 网格框架设计的 e-commerce 模板</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/classyshop.jpg" alt="" /></p>
<p><a href="http://templatic.com/ecommerce-themes/store">Store Theme</a> &#8211; 一套来自 Templatic 的主题，能将标准 WP 换成在线网店</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/storetheme.jpg" alt="" /></p>
<p><a href="http://www.billionstudio.com/news/free-crafty-cart-theme/">Crafty  Cart Theme</a> &#8211; 另一个将 WP 变成在线网店的主题</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/craftycart.jpg" alt="" /></p>
<p><a href="http://www.chris-wallace.com/2009/07/17/simplecartjs-a-free-wp-e-commerce-thematic-child-theme/">SimpleCart(js)</a> &#8211; 还有一个</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/simplecartjs.jpg" alt="" /></p>
<p><a href="http://www.markettheme.com/">Market Theme</a> &#8211; 这个也是</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/markettheme.jpg" alt="" /></p>
<p><a href="http://www.shopperpress.com/">ShopperPress</a> &#8211; WP 网店主题，支持 Google Checkout, PayPal, Authorize.net 等支付方式</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/shopperpress.jpg" alt="" /></p>
<h4>B. 设计素材</h4>
<p><a href="http://graphicriver.net/item/ecommerce-web-elements-dark-grey-green/71803">e-commerce  Web Elements, Dark Grey &amp; Green</a> &#8211; 一套绿色系的电子商务网站素材</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/darkgreygreenwebelements.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/web-20-button-ecommerce-2/38759">Web  2.0 Button (e-commerce #2)</a> &#8211; 一套电子商务网站按钮集</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/web20buttons.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/ecommerce-web-elements/73080">e-commerce  Web Elements</a> &#8211; 一套电子商务设计素材，可以自行配色</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/ecommercewebelements.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/web-pack-price-table-banner-buttons/60125">Web  Pack (Price Table, Banner, Buttons&#8230;)</a> &#8211; 一套黑白灰色系设计素材</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/webpack.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/price-table/33307">Price Table</a> &#8211; 价格表素材</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/pricetable.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/colorful-pricing-table/71847">Colorful  Pricing Table</a> &#8211; 多彩的价格表</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/colorfulpricingtable.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/pricing-tables-5-pack/54410">Pricing  Tables &#8211; 5 Pack</a> &#8211; 5 套价格表素材</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/pricingtables5pack.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/pricing-tables/49484">Pricing  Tables</a> &#8211; 价格表，包含功能清单</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/pricingtablesfeatures.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/super-bright-pricing-tables-in-4-colors/76260">Super  Bright Pricing Tables</a> &#8211; 各种配色的价格表</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/superbrightpricingtables.jpg" alt="" /></p>
<h4>C. 通用图标<em><br />
</em>
</h4>
<p><a href="http://graphicriver.net/item/vector-free-shipping-bag-set/66837">Vector  Free Shipping Bag Set</a> &#8211; 矢量购物袋</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/freeshippingbags.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/free-shipping-tag-icon/68648">Free  Shipping Tag Icon</a> &#8211; 矢量标签</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/freeshippingtag.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/13-ecommerce-icons/69737">13  E-Commerce Icons</a> &#8211; 13 套电子商务网站图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/13ecommerceicons.jpg" alt="" /></p>
<p><a href="http://www.istockphoto.com/stock-illustration-7111605-universal-icons-set-16-shopping.php">Universal  Icons &#8211; Set 16 (Shopping)</a> &#8211; 来自 iStockPhoto 的电子商务网站图标素材</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/universaliconsset16.jpg" alt="" /></p>
<p><a href="http://www.istockphoto.com/stock-illustration-6001973-sale-and-shopping-icons-alto-series.php">Sale  and Shopping Icons &#8211; Alto Series</a> &#8211; 另一套</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/altosaleandshopping.jpg" alt="" /></p>
<p><a href="http://www.istockphoto.com/stock-illustration-6692733-shopping-consumerism-icons-white-or-black-series.php">Shopping  &amp; Consumerism Icons &#8211; White or Black Series</a> &#8211; 来自 iStockPhoto 的图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/whiteorblackshopping.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/set-of-77-web-icons/79287">Set  of 77 Web Icons</a> &#8211; Web 图标集</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/77webicons.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/bluesakura-45-icon-for-your-project/79037">BlueSakura</a> &#8211; 45个图标，包括购物车图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/bluesakura.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/icon-set-n9-commerce-theme-infinity-series/53248">Icon  Set n9 &#8211; Commerce</a> &#8211; 一套电子商务网站图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/n9iconset.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/icon-set-n8-commerce-theme-infinity-series/53245">Icon  Set n8 &#8211; Commerce</a> &#8211; 另一套</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/n8iconset.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/stylish-cardboard-tag-icons/44792">Stylish  Cardboard Tag Icons</a> &#8211; 挂牌</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/stylishcardboardtags.jpg" alt="" /></p>
<p><a href="http://net.tutsplus.com/freebies/icons-freebies/beautiful-ecommerce-icons/">Beautiful  e-commerce Icons</a> &#8211; 来自 Nettuts+ 的图标，包括购物车等</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/beautifulecommerceicons.jpg" alt="" /></p>
<p><a href="http://www.istockphoto.com/stock-illustration-11457016-hola-icons-shopping.php">Hola  Icons &#8211; Shopping</a> &#8211; 一套漂亮的电子商务图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/holaicons.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/simple-icons-on-black-background-set-4-/72541">Simple  Icons on Black Background &#8211; Set 4</a> &#8211; 灰色系图标集，包括购物车等</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/simpleiconsblackbackground.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/shopping-icons-set/69773">Shopping  Icons Set</a> &#8211; 一套明亮的电子商务图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/shoppingiconsset.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/shopping-icons-fresh-collection-set-10/69708">Shopping  Icons Fresh Collection &#8211; Set 10</a> &#8211; 很卡通的电子商务图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/shoppingiconsfreshcollection.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/smooth-icon-set/69301">Smooth  Icon Set</a> &#8211; 一套电子商务图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/smoothiconset.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/shopping-icons-retro-revival-collection-set-9/68940">Shopping  Icons Retro Revival Collection &#8211; Set 9</a> &#8211; 一套怀旧风的电子商务图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/retrorevivalset9.jpg" alt="" /></p>
<p><a href="http://graphicriver.net/item/green-icons-retro-revival-collection-set-5/68934">Green  Icons Retro Revival Collection &#8211; Set 5</a> &#8211; 绿色系的</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/retrorevivalgreen.jpg" alt="" /></p>
<p><a href="http://www.istockphoto.com/stock-illustration-7722872-shopping-icon-set-isometric.php">Shopping  Icon Set (Isometric)</a> &#8211; 黄色系的</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/isometriciconset.jpg" alt="" /></p>
<p><a href="http://www.freeiconsweb.com/E-Commerce-icon-set.html">E-Commerce  Icon Set</a> &#8211; 青色系的电子商务图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/greeniconset.jpg" alt="" /></p>
<p><a href="http://www.freeiconsweb.com/Themes-Ultimate-Icon-Set.html">Themes  Ultimate Icon Set</a> &#8211; 电子商务图标</p>
<p><img src="http://media02.hongkiat.com/e-commerce-design-roundup/themesultimateicons.jpg" alt="" /></p>
<p><br />
</p>
<p>原帖地址： http://www.hongkiat.com/blog/e-commerce-design-resources-the-ultimate-round-up/
</p>
<img src ="http://www.blogjava.net/sealyu/aggbug/313865.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-02-25 11:04 <a href="http://www.blogjava.net/sealyu/archive/2010/02/25/313865.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Web网页配色方案及安全色谱（转载）</title><link>http://www.blogjava.net/sealyu/archive/2010/01/16/309764.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Sat, 16 Jan 2010 03:40:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/01/16/309764.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/309764.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/01/16/309764.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/309764.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/309764.html</trackback:ping><description><![CDATA[<span id="articlecontent" class="wenzhang_con" onmouseup="NewHighlight(event)" style="width: 740px;"><strong>Web网页配色方案</strong> <br />
<br />
一、红色的色感温暖，性格刚烈而外向，是一种对人刺激性很强的色。红色容易引起人的注意，也容易使人兴奋、激动、紧张、冲动、还是一种容易造成人视觉疲劳的色。 <br />
<br />
1. 在红色中加入少量的黄，会使其热力强盛，趋于躁动、不安。 <br />
<br />
2. 在红色中加入少量的蓝，会使其热性减弱，趋于文雅、柔和。 <br />
<br />
3. 在红色中加入少量的黑，会使其性格变的沉稳，趋于厚重、朴实。 <br />
<br />
4. 在红中加入少量的白，会使其性格变的温柔，趋于含蓄、羞涩、娇嫩。 <br />
<br />
二、黄色的性格冷漠、高傲、敏感、具有扩张和不安宁的视觉印象。黄色是各种色彩中，最为娇气的一种色。只要在纯黄色中混入少量的其它色，其色相感和色性格均会发生较大程度的变化。 <br />
<br />
1. 在黄色中加入少量的蓝，会使其转化为一种鲜嫩的绿色。其高傲的性格也随之消失，趋于一种平和、潮润的感觉。 <br />
<br />
2. 在黄色中加入少量的红，则具有明显的橙色感觉，其性格也会从冷漠、高傲转化为一种有分寸感的热情、温暖。 <br />
<br />
3. 在黄色中加入少量的黑，其色感和色性变化最大，成为一种具有明显橄榄绿的复色印象。其色性也变的成熟、随和。 <br />
<br />
4. 在黄色中加入少量的白，其色感变的柔和，其性格中的冷漠、高傲被淡化，趋于含蓄，易于接近。 <br />
<br />
三、
蓝色的色感冷嘲热讽，性格朴实而内向，是一种有助于人头脑冷嘲热讽静的色。蓝色的朴实、内向性格，常为那些性格活跃、具有较强扩张力的色彩，提供一个深
远、广埔、平静的空间，成为衬托活跃色彩的友善而谦虚的朋友。蓝色还是一种在淡化后仍然似能保持较强个性的色。如果在蓝色中分别加入少量的红、黄、黑、
橙、白等色，均不会对蓝色的性格构成较明显的影响力。 <br />
<br />
1. 如果在蓝色中黄的成份较多，其性格趋于甜美、亮丽、芳香。 <br />
<br />
2. 在蓝色中混入小量的白，可使橙色的知觉趋于焦躁、无力。 <br />
<br />
四、绿色是具有黄色和蓝色两种成份的色。在绿色中，将黄色的扩张感和蓝色的收缩感相中和，将黄色的温暖感与蓝色的寒冷感相抵消。这样使得绿色的性格最为平和、安稳。是一种柔顺、恬静、潢足、优美的色。 <br />
<br />
1. 在绿色中黄的成份较多时，其性格就趋于活泼、友善，具有幼稚性。 <br />
<br />
2. 在绿色中加入少量的黑，其性格就趋于庄重、老练、成熟。 <br />
<br />
3. 在绿色中加入少量的白，其性格就趋于洁净、清爽、鲜嫩。 <br />
<br />
五、紫色的明度在有彩色的色料中是最低的。紫色的低明度给人一种沉闷、神秘的感觉。 <br />
<br />
1. 在紫色中红的成份较多时，其知觉具有压抑感、威胁感。 <br />
<br />
2. 在紫色中加入少量的黑，其感觉就趋于沉闷、伤感、恐怖。 <br />
<br />
3. 在紫色中加入白，可使紫色沉闷的性格消失，变得优雅、娇气，并充满女性的魅力。 <br />
<br />
六、白色的色感光明，性格朴实、纯洁、快乐。白色具有圣洁的不容侵犯性。如果在白色中加入其它任何色，都会影响其纯洁性，使其性格变的含蓄。 <br />
<br />
1. 在白色中混入少量的红，就成为淡淡的粉色，鲜嫩而充满诱惑。 <br />
<br />
2. 在白色中混入少量的黄，则成为一种乳黄色，给人一种香腻的印象。 <br />
<br />
3. 在白色中混入少量的蓝，给人感觉清冷、洁净。 <br />
<br />
4. 在白色中混入少量的橙，有一种干燥的气氛。 <br />
<br />
5. 在白色中混入少量的绿，给人一种稚嫩、柔和的感觉。 <br />
<br />
6. 在白色中混入少量的紫，可诱导人联想到淡淡的芳香。 <br />
<br />
明白了配色方案，在具体操作的时候少不了会用到： <br />
<br />
<strong>安全色谱</strong> <br />
<br />
<ccid_nobr>
<table align="center" cellpadding="3" cellspacing="1">
    <tbody>
        <tr>
            <td bgcolor="#fffafa" width="191">Snow </td>
            <td bgcolor="#333333" width="104"><font color="#cccccc">255 250 250 </font></td>
            <td bgcolor="#333333" width="95"><font color="#cccccc">#FFFAFA </font></td>
        </tr>
        <tr>
            <td bgcolor="#f8f8ff">GhostWhite </td>
            <td bgcolor="#333333"><font color="#cccccc">248 248 255 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#F8F8FF </font></td>
        </tr>
        <tr>
            <td bgcolor="#f5f5f5">WhiteSmoke </td>
            <td bgcolor="#333333"><font color="#cccccc">245 245 245 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#F5F5F5 </font></td>
        </tr>
        <tr>
            <td bgcolor="#dcdcdc">Gainsboro </td>
            <td bgcolor="#333333"><font color="#cccccc">220 220 220 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#DCDCDC </font></td>
        </tr>
        <tr>
            <td bgcolor="#fffaf0">FloralWhite </td>
            <td bgcolor="#333333"><font color="#cccccc">255 250 240 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFFAF0 </font></td>
        </tr>
        <tr>
            <td bgcolor="#fdf5e6">OldLace </td>
            <td bgcolor="#333333"><font color="#cccccc">253 245 230 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FDF5E6 </font></td>
        </tr>
        <tr>
            <td bgcolor="#faf0e6">Linen </td>
            <td bgcolor="#333333"><font color="#cccccc">250 240 230 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FAF0E6 </font></td>
        </tr>
        <tr>
            <td bgcolor="#faebd7">AntiqueWhite </td>
            <td bgcolor="#333333"><font color="#cccccc">250 235 215 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FAEBD7 </font></td>
        </tr>
        <tr>
            <td bgcolor="#ffefd5">PapayaWhip </td>
            <td bgcolor="#333333"><font color="#cccccc">255 239 213 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFEFD5 </font></td>
        </tr>
        <tr>
            <td bgcolor="#ffebcd">BlanchedAlmond </td>
            <td bgcolor="#333333"><font color="#cccccc">255 235 205 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFEBCD </font></td>
        </tr>
        <tr>
            <td bgcolor="#ffe4c4">Bisque </td>
            <td bgcolor="#333333"><font color="#cccccc">255 228 196 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFE4C4 </font></td>
        </tr>
        <tr>
            <td bgcolor="#ffdab9">PeachPuff </td>
            <td bgcolor="#333333"><font color="#cccccc">255 218 185 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFDAB9 </font></td>
        </tr>
        <tr>
            <td bgcolor="#ffdead">NavajoWhite </td>
            <td bgcolor="#333333"><font color="#cccccc">255 222 173 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFDEAD </font></td>
        </tr>
        <tr>
            <td bgcolor="#ffe4b5">Moccasin </td>
            <td bgcolor="#333333"><font color="#cccccc">255 228 181 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFE4B5 </font></td>
        </tr>
        <tr>
            <td bgcolor="#fff8dc">Cornsilk </td>
            <td bgcolor="#333333"><font color="#cccccc">255 248 220 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFF8DC </font></td>
        </tr>
        <tr>
            <td bgcolor="#fffff0">Ivory </td>
            <td bgcolor="#333333"><font color="#cccccc">255 255 240 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFFFF0 </font></td>
        </tr>
        <tr>
            <td bgcolor="#fffacd">LemonChiffon </td>
            <td bgcolor="#333333"><font color="#cccccc">255 250 205 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFFACD </font></td>
        </tr>
        <tr>
            <td bgcolor="#fff5ee">Seashell </td>
            <td bgcolor="#333333"><font color="#cccccc">255 245 238 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFF5EE </font></td>
        </tr>
        <tr>
            <td bgcolor="#f0fff0">Honeydew </td>
            <td bgcolor="#333333"><font color="#cccccc">240 255 240 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#F0FFF0 </font></td>
        </tr>
        <tr>
            <td bgcolor="#f5fffa">MintCream </td>
            <td bgcolor="#333333"><font color="#cccccc">245 255 250 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#F5FFFA </font></td>
        </tr>
        <tr>
            <td bgcolor="#f0ffff">Azure </td>
            <td bgcolor="#333333"><font color="#cccccc">240 255 255 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#F0FFFF </font></td>
        </tr>
        <tr>
            <td bgcolor="#f0f8ff">AliceBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">240 248 255 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#F0F8FF </font></td>
        </tr>
        <tr>
            <td bgcolor="#e6e6fa">lavender </td>
            <td bgcolor="#333333"><font color="#cccccc">230 230 250 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#E6E6FA </font></td>
        </tr>
        <tr>
            <td bgcolor="#fff0f5">LavenderBlush </td>
            <td bgcolor="#333333"><font color="#cccccc">255 240 245 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFF0F5 </font></td>
        </tr>
        <tr>
            <td bgcolor="#ffe4e1">MistyRose </td>
            <td bgcolor="#333333"><font color="#cccccc">255 228 225 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFE4E1 </font></td>
        </tr>
        <tr>
            <td bgcolor="#ffffff">White </td>
            <td bgcolor="#333333"><font color="#cccccc">255 255 255 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#FFFFFF </font></td>
        </tr>
        <tr>
            <td bgcolor="#000000">Black </td>
            <td bgcolor="#333333"><font color="#cccccc">0 0 0 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#000000 </font></td>
        </tr>
        <tr>
            <td bgcolor="#2f4f4f">DarkSlateGray </td>
            <td bgcolor="#333333"><font color="#cccccc">47 79 79 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#2F4F4F </font></td>
        </tr>
        <tr>
            <td bgcolor="#696969">DimGrey </td>
            <td bgcolor="#333333"><font color="#cccccc">105 105 105 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#696969 </font></td>
        </tr>
        <tr>
            <td bgcolor="#708090">SlateGrey </td>
            <td bgcolor="#333333"><font color="#cccccc">112 128 144 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#708090 </font></td>
        </tr>
        <tr>
            <td bgcolor="#778899">LightSlateGray </td>
            <td bgcolor="#333333"><font color="#cccccc">119 136 153 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#778899 </font></td>
        </tr>
        <tr>
            <td bgcolor="#bebebe">Grey </td>
            <td bgcolor="#333333"><font color="#cccccc">190 190 190 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#BEBEBE </font></td>
        </tr>
        <tr>
            <td bgcolor="#d3d3d3">LightGray </td>
            <td bgcolor="#333333"><font color="#cccccc">211 211 211 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#D3D3D3 </font></td>
        </tr>
        <tr>
            <td bgcolor="#191970">MidnightBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">25 25 112 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#191970 </font></td>
        </tr>
        <tr>
            <td bgcolor="#000080">NavyBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">0 0 128 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#000080 </font></td>
        </tr>
        <tr>
            <td bgcolor="#6495ed">CornflowerBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">100 149 237 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#6495ED </font></td>
        </tr>
        <tr>
            <td bgcolor="#483d8b">DarkSlateBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">72 61 139 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#483D8B </font></td>
        </tr>
        <tr>
            <td bgcolor="#6a5acd">SlateBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">106 90 205 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#6A5ACD </font></td>
        </tr>
        <tr>
            <td bgcolor="#7b68ee">MediumSlateBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">123 104 238 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#7B68EE </font></td>
        </tr>
        <tr>
            <td bgcolor="#8470ff">LightSlateBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">132 112 255 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#8470FF </font></td>
        </tr>
        <tr>
            <td bgcolor="#0000cd">MediumBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">0 0 205 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#0000CD </font></td>
        </tr>
        <tr>
            <td bgcolor="#4169e1">RoyalBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">65 105 225 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#4169E1 </font></td>
        </tr>
        <tr>
            <td bgcolor="#0000ff">Blue </td>
            <td bgcolor="#333333"><font color="#cccccc">0 0 255 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#0000FF </font></td>
        </tr>
        <tr>
            <td bgcolor="#1e90ff">DodgerBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">30 144 255 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#1E90FF </font></td>
        </tr>
        <tr>
            <td bgcolor="#00bfff">DeepSkyBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">0 191 255 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#00BFFF </font></td>
        </tr>
        <tr>
            <td bgcolor="#87ceeb">SkyBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">135 206 235 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#87CEEB </font></td>
        </tr>
        <tr>
            <td bgcolor="#87cefa">LightSkyBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">135 206 250 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#87CEFA </font></td>
        </tr>
        <tr>
            <td bgcolor="#4682b4">SteelBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">70 130 180 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#4682B4 </font></td>
        </tr>
        <tr>
            <td bgcolor="#b0c4de">LightSteelBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">176 196 222 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#B0C4DE </font></td>
        </tr>
        <tr>
            <td bgcolor="#add8e6">LightBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">173 216 230 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#ADD8E6 </font></td>
        </tr>
        <tr>
            <td bgcolor="#b0e0e6">PowderBlue </td>
            <td bgcolor="#333333"><font color="#cccccc">176 224 230 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#B0E0E6 </font></td>
        </tr>
        <tr>
            <td bgcolor="#afeeee">PaleTurquoise </td>
            <td bgcolor="#333333"><font color="#cccccc">175 238 238 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#AFEEEE </font></td>
        </tr>
        <tr>
            <td bgcolor="#00ced1">DarkTurquoise </td>
            <td bgcolor="#333333"><font color="#cccccc">0 206 209 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#00CED1 </font></td>
        </tr>
        <tr>
            <td bgcolor="#48d1cc">MediumTurquoise </td>
            <td bgcolor="#333333"><font color="#cccccc">72 209 204 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#48D1CC </font></td>
        </tr>
        <tr>
            <td bgcolor="#40e0d0">Turquoise </td>
            <td bgcolor="#333333"><font color="#cccccc">64 224 208 </font></td>
            <td bgcolor="#333333"><font color="#cccccc">#40E0D0 </font></td>
        </tr>
        <tr>
            <td bgcolor="#00ffff">Cyan </td>
            <td bgcolor="#333333"><br />
            </td>
        </tr>
    </tbody>
</table>
</ccid_nobr><br />
<br />
希望本文能使各位读者制作的网页更加多姿多彩。</span>
<img src ="http://www.blogjava.net/sealyu/aggbug/309764.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-01-16 11:40 <a href="http://www.blogjava.net/sealyu/archive/2010/01/16/309764.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>网页典型配色方案（转载）</title><link>http://www.blogjava.net/sealyu/archive/2010/01/16/309763.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Sat, 16 Jan 2010 03:39:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/01/16/309763.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/309763.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/01/16/309763.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/309763.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/309763.html</trackback:ping><description><![CDATA[<p><img alt="1.gif" src="http://image.360doc.com/DownloadImg/16546/329786_1.gif" width="300" height="848" /><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="2.gif" src="http://image.360doc.com/DownloadImg/16546/329786_2.gif" width="500" height="1600" />&nbsp;</p>
<p><img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_3.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_4.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_5.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_6.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_7.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_8.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_9.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_10.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_11.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_12.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_13.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_14.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"><br />
<img style="cursor: pointer;" title="在新窗口打开图片" alt="" src="http://image.360doc.com/DownloadImg/16546/329786_15.gif" onload="function anonymous()
{
function anonymous()
{
function anonymous()
{
if(this.width />screen.width-333)this.width=screen.width-333
}
}
}" border="0"></p>
<img src ="http://www.blogjava.net/sealyu/aggbug/309763.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-01-16 11:39 <a href="http://www.blogjava.net/sealyu/archive/2010/01/16/309763.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>很经典的配色方案</title><link>http://www.blogjava.net/sealyu/archive/2010/01/16/309762.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Sat, 16 Jan 2010 03:37:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/01/16/309762.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/309762.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/01/16/309762.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/309762.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/309762.html</trackback:ping><description><![CDATA[<div>
<h1><strong>很经典的配色方案</strong></h1>
<h2>&nbsp;</h2>
</div>
<div>
<div><img style="margin: 0px 2px -6px 0px;" alt="" src="http://image.360doc.com/DownloadImg/4332/131111_1.gif" /><img alt="" src="http://image.360doc.com/DownloadImg/4332/131111_2.gif" /> <img style="margin: 0px 2px -1px 0px;" alt="" src="http://image.360doc.com/DownloadImg/4332/131111_3.gif" /> </div>
</div>
<div id="logPanel"><a title="在新窗口打开图片" href="http://www.yffeel.com/yffeel/blog/attachments/month_0606/peise1.jpg" target="_blank"><img alt="" src="http://image.360doc.com/DownloadImg/4332/131111_4.jpg" border="0" width="500" /></a><br />
<br />
<span style="color: red;">点击图片放大查看</span><br />
<br />
<a title="在新窗口打开图片" href="http://www.yffeel.com/yffeel/blog/attachments/month_0606/peise2.gif" target="_blank"><img alt="" src="http://image.360doc.com/DownloadImg/4332/131111_5.gif" border="0" width="500" /></a><br />
<br />
<span style="color: red;">点击图片放大查看</span><br />
<br />
<span style="color: blue;">附：背景与字体的搭配经验</span><br />
<br />
bgcolor="#f1fafa"　//做正文的背景色好，淡雅<br />
<br />
bgcolor="#E8FFE8" //做标题的背景色好，与上面的颜色搭配很协调这两种颜色可以配黑字或FONT COLOR="#800080"<br />
<br />
bgcolor="#E8E8FF"　//做正文的背景色好，字体配黑色较好<br />
<br />
bgcolor="#8080C0"　//上配黄色白色字体较好<br />
<br />
bgcolor="#E8D098"//上搭配浅蓝色或蓝色字体较好<br />
<br />
<br />
bgcolor="#EFEFDA" //上搭配浅蓝色或红色字体较好<br />
<br />
bgcolor="#F2F1D7"//配黑字素雅,红字醒目<br />
<br />
bgcolor="#336699" //配白字做标题较好<br />
<br />
bgcolor="#6699CC"和bgcolor="#479AC7"和bgcolor="#66CCCC"和bgcolor="#00B271"和bgcolor="#B45B3E"配白字都较好看 //可做标题<br />
<br />
bgcolor="#FBF8EA"和bgcolor="#D5F3F4"和bgcolor="#D7FFF0"和bgcolor="#F0DAD2"和bgcolor="#DDF3FF"配黑字都较好看 //一般做正文以上配色方案都比较淡雅。<br />
<br />
浅绿底黑字，或白底蓝字都很醒目，但前者突出背景，后者突出前景。红底白字醒目，较深底色配黄字有效果</div>
<img src ="http://www.blogjava.net/sealyu/aggbug/309762.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-01-16 11:37 <a href="http://www.blogjava.net/sealyu/archive/2010/01/16/309762.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>用CSS使DIV水平居中 (转)</title><link>http://www.blogjava.net/sealyu/archive/2010/01/14/309521.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Thu, 14 Jan 2010 12:49:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/01/14/309521.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/309521.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/01/14/309521.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/309521.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/309521.html</trackback:ping><description><![CDATA[<div>
<p>一，用CSS使DIV层水平居中<br />
<br />
对需要水平居中的DIV层添加以下属性: <br />
<span style="color: red;">&nbsp;&nbsp; margin-left: auto;<br />
&nbsp;&nbsp; margin-right: auto; </span></p>
<p>这样在FF中已经居中了,可是在IE中看还是没有居中!<br />
<br />
问题并不在CSS而在XHTML网页本身.<br />
<br />
需要加上这样的代码才能使得上述设置有效果: </p>
<p><span style="color: red;">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</span> </p>
<p>如何使DIV居中<br />
<br />
主要的样式定义如下： </p>
<p>body { TEXT-ALIGN: center; }<br />
<br />
#center { MARGIN-RIGHT: auto; MARGIN-LEFT: auto; } </p>
<p>说明：<br />
<br />
首先在父级元素定义TEXT-ALIGN:
center;这个的意思就是在父级元素内的内容居中；对于IE这样设定就已经可以了。但在mozilla中不能居中。解决办法就是在子元素定义时候设定
时再加上&#8220;MARGIN-RIGHT: auto;MARGIN-LEFT: auto; &#8221;<br />
<br />
需要说明的是，如果你想用这个方法使整个页面要居中，建议不要套在一个DIV里，你可以依次拆出多个div，只<br />
<br />
要在每个拆出的div里定义MARGIN-RIGHT: auto;MARGIN-LEFT: auto; 就可以了。<br />
<br />
如何使图片在DIV 中垂直居中<br />
<br />
用背景的方法。举例： </p>
<p>body{ BACKGROUND: url(http://www.w3cn.org/style/001/logo_w ... )#FFFno-repeatcenter; } </p>
<p>关键就是最后的center,这个参数定义图片的位置。还可以写成&#8220;top left&#8221;(左上角)或者"bottom right"等，也可以直接写数值"50 30"<br />
<br />
如何使文本在DIV中垂直居中<br />
<br />
果是文字，便不能用背景方法，可以用增高行距的办法变通实现垂直居中，完整代码如下： </p>
<p>&lt;html&gt;<br />
<br />
&lt;head&gt;<br />
<br />
&lt;style&gt;<br />
<br />
body{ TEXT-ALIGN: center; }<br />
<br />
#center{ MARGIN-RIGHT: auto;<br />
<br />
MARGIN-LEFT: auto;<br />
<br />
height:200px;<br />
<br />
background:#F00;<br />
<br />
width:400px;<br />
<br />
vertical-align:middle;<br />
<br />
line-height:200px;<br />
<br />
}<br />
<br />
&lt;/style&gt;<br />
<br />
&lt;/head&gt;<br />
<br />
&lt;body&gt;<br />
<br />
&lt;div id="center"&gt;&lt;p&gt;test content&lt;/p&gt;&lt;/div&gt;<br />
<br />
&lt;/body&gt;<br />
<br />
&lt;/html&gt; </p>
<p>说明：<br />
<br />
vertical-align:middle;表示行内垂直居中，我们将行距增加到和整个DIV一样高line-height:200px;然后插入文字，就垂直居中了。<br />
<br />
CSS+DIV控制页面中元素垂直居中代码 全局和区域垂直居中 </p>
<p>&lt;style type="text/css" media=screen&gt;<br />
<br />
body<br />
<br />
{ <br />
<br />
text-align: center;<br />
<br />
}<br />
<br />
#a<br />
<br />
{ <br />
<br />
width: 200px;<br />
<br />
height: 400px;<br />
<br />
background: #000;<br />
<br />
}<br />
<br />
#b<br />
<br />
{ <br />
<br />
margin-top: expression((a.clientHeight-50)/2);<br />
<br />
width: 50px;<br />
<br />
height: 50px;<br />
<br />
background: #FFF;<br />
<br />
}<br />
<br />
#c<br />
<br />
{ <br />
<br />
position: absolute;<br />
<br />
left: expression((body.clientWidth-50)/2);<br />
<br />
top: expression((body.clientHeight-50)/2);<br />
<br />
width: 50px;<br />
<br />
height: 50px;<br />
<br />
background: #F00;<br />
<br />
}<br />
<br />
&lt;/style&gt;<br />
<br />
&lt;div id="a"&gt;<br />
<br />
&lt;div id="b"&gt;&lt;/div&gt;<br />
<br />
&lt;/div&gt;<br />
<br />
&lt;div id="c"&gt;&lt;/div&gt; </p>
<p>另一方法: </p>
<p>&lt;div
style="background:blue;position:absolute;left:expression((body.clientWidth-50)/2);top:expression((body.clientHeight-50)/2);width:50;height:50"&gt;&lt;/div&gt;
</p>
<p>***************************************<br />
<br />
二，用JS使层居中<br />
<br />
把如下代码加入&lt;body&gt;区域中 </p>
<p>&lt;DIV id=L1 style="HEIGHT: 107px; LEFT: 341px; POSITION: absolute; TOP: 585px; WIDTH: 205px; Z-INDEX: 1"&gt;<br />
<br />
&lt;TABLE bgColor=#ffffff border=1 borderColorDark=#ffffff borderColorLight=#000000 cellPadding=0 cellSpacing=0 width="100%"&gt;<br />
<br />
&lt;TR&gt;<br />
<br />
&lt;TD height=1 width=178&gt;□::BEST4U论坛::&lt;/TD&gt;<br />
<br />
&lt;TD align=center onclick="L1.style.visibility='hidden'" <br />
<br />
style="CURSOR: hand" width=21&gt;х&lt;/TD&gt;&lt;/TR&gt;<br />
<br />
&lt;TR vAlign=top&gt;<br />
<br />
&lt;TD colSpan=2 <br />
<br />
height=91&gt;欢迎光临本站!&lt;BR&gt;&lt;BR&gt;本站域名:&lt;BR&gt;http://webform.cn <br />
<br />
&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;/DIV&gt;<br />
<br />
&lt;SCRIPT LANGUAGE="JavaScript"&gt;<br />
<br />
function moveit() //这个函数用于把层放到浏览器中间<br />
<br />
{ <br />
<br />
L1.style.left=((document.body.offsetWidth-parseFloat (L1.style.width))/2)+document.body.scrollLeft;<br />
<br />
L1.style.top=((document.body.offsetHeight-parseFloat (L1.style.height))/2)+document.body.scrollTop;<br />
<br />
}<br />
<br />
window.onload=moveit; //网面打开时时执行moveit()<br />
<br />
window.onresize=moveit; //当调整浏览器大小时执行moveit()<br />
<br />
window.onscroll=moveit; //当拉动滚动条时执行moveit()<br />
<br />
&lt;/SCRIPT&gt;</p>
</div>
<img src ="http://www.blogjava.net/sealyu/aggbug/309521.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-01-14 20:49 <a href="http://www.blogjava.net/sealyu/archive/2010/01/14/309521.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Choosing a DOCTYPE</title><link>http://www.blogjava.net/sealyu/archive/2010/01/08/308642.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Fri, 08 Jan 2010 01:11:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/01/08/308642.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/308642.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/01/08/308642.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/308642.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/308642.html</trackback:ping><description><![CDATA[<p>According to <abbr title="HyperText Markup Language">HTML</abbr> standards, each <abbr title="HyperText Markup Language">HTML</abbr> document requires a <em>document type declaration</em>. The "DOCTYPE" begins the <abbr title="HyperText Markup Language">HTML</abbr> document and tells a <a href="http://htmlhelp.com/tools/validator/index.html.en">validator</a> which version of <abbr title="HyperText Markup Language">HTML</abbr> to use in checking the document's syntax.</p>
<p>If standard <abbr title="HyperText Markup Language">HTML</abbr> does not meet your needs but you still wish to gain the benefits of <abbr title="HyperText Markup Language">HTML</abbr> validation, see the section on <a href="http://htmlhelp.com/tools/validator/customdtd.html">using a custom <abbr title="Document Type Definition">DTD</abbr></a>.</p>
<p>The following DOCTYPEs are commonly used:</p>
<dl><dt><a name="html4strict"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"&gt;</code></a></dt><dd>
<p>This declares the document to be <strong>HTML 4.01 Strict</strong>. HTML 4.01 Strict is a trimmed down version of <a href="http://www.w3.org/TR/html401/">HTML 4.01</a> that emphasizes structure over presentation. <a href="http://htmlhelp.com/reference/html40/deprecated.html">Deprecated elements</a> and attributes (including most presentational attributes), <a href="http://htmlhelp.com/reference/html40/frames/">frames</a>,
and link targets are not allowed in HTML 4 Strict. By writing to HTML 4
Strict, authors can achieve accessible, structurally rich documents
that easily adapt to <a href="http://htmlhelp.com/reference/css/">style sheets</a>
and different browsing situations. However, HTML 4 Strict documents may
look bland on very old browsers that lack support for style sheets.</p>
<p>Newer browsers such as Internet Explorer 5 for Mac,
Netscape 6, and <a href="http://www.mozilla.org/">Mozilla</a> use a
standards-compliant rendering for HTML 4 Strict documents. These browsers
use a "quirks" mode for most other document types to emulate
rendering bugs in older browsers.</p>
</dd><dt><a name="html4transitional"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"<br />
"http://www.w3.org/TR/html4/loose.dtd"&gt;</code></a></dt><dd>
<p>This declares the document to be <strong>HTML 4.01 Transitional</strong>. HTML 4 Transitional includes all elements and attributes of <a href="http://htmlhelp.com/tools/validator/doctype.html#html4strict">HTML 4 Strict</a> but adds presentational attributes, <a href="http://htmlhelp.com/reference/html40/deprecated.html">deprecated elements</a>, and link targets.</p>
<div>
<p>Newer browsers such as Internet Explorer 5 for Mac,
Netscape 6, and <a href="http://www.mozilla.org/">Mozilla</a> use a
standards-compliant rendering for HTML 4.01 Transitional documents
that include the <abbr title="Uniform Resource Identifier">URI</abbr>
of the <abbr title="Document Type Definition">DTD</abbr>
in the DOCTYPE. These browsers use a "quirks"
mode to emulate rendering bugs in older browsers if the
<abbr title="Uniform Resource Identifier">URI</abbr> is
omitted:</p>
<p><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"&gt;</code></p>
</div>
</dd><dt><a name="html4frameset"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"<br />
"http://www.w3.org/TR/html4/frameset.dtd"&gt;</code></a></dt><dd>
<p>This declares the document to be <strong>HTML 4.01 Frameset</strong>. HTML 4 Frameset is a variant of <a href="http://htmlhelp.com/tools/validator/doctype.html#html4transitional">HTML 4 Transitional</a> for documents that use <a href="http://htmlhelp.com/reference/html40/frames/">frames</a>.</p>
</dd><dt><a name="xhtml1strict"><code>&lt;!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"<br />
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;</code></a></dt><dd>
<p>This declares the document to be <strong>XHTML 1.0 Strict</strong>.
<a href="http://www.w3.org/TR/xhtml1/">XHTML 1.0</a> Strict is an XML
version of <a href="http://htmlhelp.com/tools/validator/doctype.html#html4strict">HTML 4 Strict</a>.</p>
</dd><dt><a name="xhtml1transitional"><code>&lt;!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br />
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</code></a></dt><dd>
<p>This declares the document to be <strong>XHTML 1.0 Transitional</strong>.
<a href="http://www.w3.org/TR/xhtml1/">XHTML 1.0</a> Transitional is an XML
version of <a href="http://htmlhelp.com/tools/validator/doctype.html#html4transitional">HTML 4 Transitional</a>.</p>
</dd><dt><a name="xhtml1frameset"><code>&lt;!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"<br />
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"&gt;</code></a></dt><dd>
<p>This declares the document to be <strong>XHTML 1.0 Frameset</strong>.
<a href="http://www.w3.org/TR/xhtml1/">XHTML 1.0</a> Frameset is an XML
version of <a href="http://htmlhelp.com/tools/validator/doctype.html#html4frameset">HTML 4 Frameset</a>.</p>
</dd><dt><a name="html32"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"&gt;</code></a></dt><dd>
<p>This declares the document to be <strong>HTML 3.2</strong>. <a href="http://htmlhelp.com/reference/wilbur/">HTML 3.2</a> is well supported by most browsers in use. However, HTML 3.2 has limited support for <a href="http://htmlhelp.com/reference/css/">style sheets</a> and no support for <a href="http://htmlhelp.com/reference/html40/">HTML 4</a> features such as <a href="http://htmlhelp.com/reference/html40/frames/">frames</a> and internationalization.</p>
</dd><dt><a name="html20"><code>&lt;!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"&gt;</code></a></dt><dd>
<p>This declares the document to be <strong>HTML 2.0</strong>. <a href="http://www.w3.org/MarkUp/html-spec/">HTML 2.0</a>
is widely supported by browsers but lacks support for tables, frames,
and internationalization, as well as many commonly used presentational
elements and attributes.</p>
</dd></dl>
<img src ="http://www.blogjava.net/sealyu/aggbug/308642.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-01-08 09:11 <a href="http://www.blogjava.net/sealyu/archive/2010/01/08/308642.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>IE下div使用margin:0px auto不居中的原因</title><link>http://www.blogjava.net/sealyu/archive/2010/01/08/308640.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Fri, 08 Jan 2010 01:08:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/01/08/308640.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/308640.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/01/08/308640.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/308640.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/308640.html</trackback:ping><description><![CDATA[一般在将div居中显示时，使用css：<br />
<div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; background-color: #eeeeee; font-size: 13px; width: 98%;"><!--<br />
<br />
Code highlighting produced by Actipro CodeHighlighter (freeware)<br />
http://www.CodeHighlighter.com/<br />
<br />
--><span style="color: #800000;">divX&nbsp;</span><span style="color: #000000;">{</span><span style="color: #ff0000;">margin</span><span style="color: #000000;">:</span><span style="color: #0000ff;">0&nbsp;auto</span><span style="color: #000000;">;</span><span style="color: #000000;">}<br />
</span></div>
此css在firefox下是好的，但是在ie下不起作用，网上看到原因如下：<br />
&lt;div id="cnbruce"&gt;margin: 0 auto 看看内容居中否&lt;/div&gt;<br />
如上调试结果，IE6.0是不居中的，当然解决的办法可以是对网页主体&#8220;&lt;body&gt;&#8221;声明文本居中，即<br />
[ Copy ] [ Run ] [ Save ]<br />
&lt;style&gt;<br />
body{text-align:center}<br />
#cnbruce{width:500px; background-color: #ccc; margin: 0 auto}<br />
&lt;/style&gt;<br />
&lt;div id="cnbruce"&gt;margin: 0 auto 看看内容居中否（加了body文本居中）&lt;/div&gt;<br />
然后，单个div的CSS居中，非要扯上&lt;body&gt;？<br />
于是在不采用&#8220;&lt;body&gt;&#8221;声明文本居中的情况下，将DOCTYPE声明加上，立马有效果<br />
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank"><font color="#4f7500">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</font></a>"&gt;<br />
&lt;style&gt;<br />
#cnbruce{width:500px; background-color: #ccc; margin: 0 auto}<br />
&lt;/style&gt;<br />
&lt;div id="cnbruce"&gt;margin: 0 auto 看看内容居中否（加了DOCTYPE声明）&lt;/div&gt;<br />
其实原理都知道，就是因为用这个&#8220;懒人&#8221;的HTML调试框，懒得去输入些忘却的东西，到头来还以为真相就是如此呢。。。<br />
同样，关于&#8220;一边固定，一边自动扩展&#8221;的例子，加与不加在IE效果完全不同<br />
如下是不加的情况：<br />
[ Copy ] [ Run ] [ Save ]<br />
&lt;html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank"><font color="#4f7500">http://www.w3.org/1999/xhtml</font></a>"&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;<br />
&lt;title&gt;CSS布局&lt;/title&gt;<br />
&lt;style type="text/css"&gt;<br />
&lt;!--<br />
body {<br />
margin:0;<br />
}<br />
#dv1 {<br />
background-color: #3399FF;<br />
float: left;<br />
width: 280px;<br />
}<br />
#dv2 {<br />
background-color: #FFCC00;<br />
width:100%;<br />
}<br />
--&gt;<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body&gt;<br />
<br />
&lt;div id="dv1"&gt;<br />
&lt;pre&gt;#dv1 {<br />
background-color: #3399FF;<br />
float: left;<br />
width: 280px;<br />
} &lt;/pre&gt;<br />
&lt;/div&gt;<br />
&lt;div id="dv2"&gt;<br />
&lt;pre&gt;#dv2 {<br />
background-color: #FFCC00;<br />
width:100%;<br />
}<br />
&lt;/pre&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
如下是添加了DOCTYPE声明<br />
[ Copy ] [ Run ] [ Save ]<br />
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank"><font color="#4f7500">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</font></a>"&gt;<br />
&lt;html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank"><font color="#4f7500">http://www.w3.org/1999/xhtml</font></a>"&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;<br />
&lt;title&gt;CSS布局1&lt;/title&gt;<br />
&lt;style type="text/css"&gt;<br />
&lt;!--<br />
body {<br />
margin:0;<br />
}<br />
#dv1 {<br />
background-color: #3399FF;<br />
float: left;<br />
width: 280px;<br />
}<br />
#dv2 {<br />
background-color: #FFCC00;<br />
width:100%;<br />
}<br />
--&gt;<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body&gt;<br />
<br />
&lt;div id="dv1"&gt;<br />
&lt;pre&gt;#dv1 {<br />
background-color: #3399FF;<br />
float: left;<br />
width: 280px;<br />
} &lt;/pre&gt;<br />
&lt;/div&gt;<br />
&lt;div id="dv2"&gt;<br />
&lt;pre&gt;#dv2 {<br />
background-color: #FFCC00;<br />
width:100%;<br />
}<br />
&lt;/pre&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
下次再也不信HTML调试框了，还是用软件，呵呵。<br />
<br />
引用W3C的一些关于DOCTYPE的说明<br />
<a href="http://www.w3cn.org/article/step/2004/26.html" target="_blank"><font color="#4f7500">http://www.w3cn.org/article/step/2004/26.html</font></a><br />
引用 <br />
什么是DOCTYPE<br />
上面这些代码我们称做DOCTYPE声明。DOCTYPE是document type(文档类型)的简写，用来说明你用的XHTML或者HTML是什么版本。<br />
<br />
其中的DTD(例如上例中的xhtml1-transitional.dtd)叫文档类型定义，里面包含了文档的规则，浏览器就根据你定义的DTD来解释你页面的标识，并展现出来。<br />
<br />
要建立符合标准的网页，DOCTYPE声明是必不可少的关键组成部分；除非你的XHTML确定了一个正确的DOCTYPE，否则你的标识和CSS都不会生效。<br />
<br />
XHTML 1.0 提供了三种DTD声明可供选择：<br />
<br />
过渡的(Transitional):要求非常宽松的DTD，它允许你继续使用HTML4.01的标识(但是要符合xhtml的写法)。完整代码如下：<br />
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank"><font color="#4f7500">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</font></a>"&gt;<br />
<br />
严格的(Strict):要求严格的DTD，你不能使用任何表现层的标识和属性，例如&lt;br&gt;。完整代码如下：<br />
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank"><font color="#4f7500">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</font></a>"&gt;<br />
<br />
框架的(Frameset):专门针对框架页面设计使用的DTD，如果你的页面中包含有框架，需要采用这种DTD。完整代码如下：<br />
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd" target="_blank"><font color="#4f7500">http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd</font></a>"&gt;<br />
<br />
我们选择什么样的DOCTYPE<br />
理想情况当然是严格的DTD，但对于我们大多数刚接触web标准的设计师来说，过渡的DTD(XHTML 1.0
Transitional)是目前理想选择(包括本站，使用的也是过渡型DTD)。因为这种DTD还允许我们使用表现层的标识、元素和属性，也比较容易通
过W3C的代码校验。<br />
<br />
注：上面说的"表现层的标识、属性"是指那些纯粹用来控制表现的tag，例如用于排版的表格、背景颜色标识等。在XHTML中标识是用来表示结构的，而不是用来实现表现形式，我们过渡的目的是最终实现数据和表现相分离。<br />
<br />
打个比方：人体模特换衣服。模特就好比数据，衣服则是表现形式，模特和衣服是分离的，这样你就可以随意换衣服。而原来HTML4中，数据和表现是混杂在一起的，要一次性换个表现形式非常困难。呵呵，有点抽象了，这个概念需要我们在应用过程中逐步领会。<br />
<br />
补充<br />
DOCTYPE声明必须放在每一个XHTML文档最顶部，在所有代码和标识之上。<br />
<br />
<img src ="http://www.blogjava.net/sealyu/aggbug/308640.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-01-08 09:08 <a href="http://www.blogjava.net/sealyu/archive/2010/01/08/308640.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>CSS中关于clearfix对float的使用(转)</title><link>http://www.blogjava.net/sealyu/archive/2010/01/07/308549.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Thu, 07 Jan 2010 06:50:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/01/07/308549.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/308549.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/01/07/308549.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/308549.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/308549.html</trackback:ping><description><![CDATA[<h1>使用float时出现的问题</h1>
<p>一个非常常见的CSS问题，定位使用浮动的时候，下面的层被浮动的层所覆盖，或者层里嵌套的子层超出了外层的范围。</p>
<div style="border: 2px solid red; color: red;">
<div style="border: 1px solid green; float: left; color: green;">这是一个浮动在红框的层中的一个层<br />
style="border:1px solid green;float:left;color:green;"</div>
这是红框的层中的内容</div>
<h1>解决的方法</h1>
<h2>陈旧的方法--使用clear:both</h2>
<p>通常的解决办法是在浮动层后面添加一个额外元素，例如一个div或者一个br，并且定义它的样式为clear: both。</p>
<div style="border: 2px solid red; color: red;">
<div style="border: 1px solid green; float: left; color: green;">这是一个浮动在红框的层中的一个层<br />
style="border:1px solid green;float:left;color:green;"</div>
这是红框的层中的内容，红框层后面还嵌入了一个没有内容的层&lt;div style="clear:both;"&gt;&lt;/div&gt;
</div>
<p>通常的解决办法是在浮动层后面添加一个额外元素，例如一个div或者一个br，并且定义它的样式为clear: both。</p>
<h2>CSS的方法--使用：after</h2>
<p>这种方法在在文章《<a href="http://www.positioniseverything.net/easyclearing.html" target="_blank">How To Clear Floats Without Structural Markup</a>》中被提到。</p>
<p>/*需要用到的CSS样式表的最初设想*/<br />
.clearfix:after {<br />
content: ".";<br />
display: block;<br />
height: 0;<br />
clear: both;<br />
visibility: hidden;<br />
}</p>
<p>/*实际用到的CSS样式表(针对不同浏览器做了优化)*/<br />
.clearfix:after {<br />
content: ".";<br />
display: block;<br />
height: 0;<br />
clear:both;<br />
visibility: hidden;<br />
}<br />
.clearfix {display: inline-table;}<br />
/* Hides from IE-mac "*/ *<br />
html .clearfix {height: 1%;}<br />
.clearfix {display: block;}<br />
/* End hide from IE-mac */</p>
<div style="border: 2px solid red; color: red;">
<div style="border: 1px solid green; float: left; color: green;">这是一个浮动在红框的层中的一个层<br />
style="border:1px solid green;float:left;color:green;"</div>
这是红框的层中的内容,对这个红框层应用了上面提到的CSS类.clearfix</div>
<h2>CSS的方法--使用overflow</h2>
<p>前面的2种方法可以很好解决浮动超出的问题，但是如果当你真的需要对层或者层里的对象进行clear的时候怎么办？一种简单的方法就是用overflow属性，这个方法最初的发表在《<a href="http://www.sitepoint.com/blog-post-view?id=238086" target="_blank">Simple Clearing of Floats</a>》，又在《<a href="http://www.mezzoblue.com/archives/2005/03/03/clearance/">Clearance</a>》和《<a href="http://annevankesteren.nl/archives/2005/03/clearing-floats"> Super simple clearing floats</a>》中被广泛讨论。</p>
<p>/*需要用到的CSS样式表的最初设想(对IE不起作用)*/<br />
.clearfix2{overflow: auto}</p>
<p>/*实际用到的CSS样式表(针对不同浏览器做了优化)*/<br />
.clearfix2{<br />
_height:1%; /*height前面的下划线是必须的*/<br />
overflow:auto;<br />
}<br />
</p>
<div style="border: 1px solid green; float: left; color: green;">这是一个浮动在红框的层中的一个层<br />
style="border:1px solid green;float:left;color:green;"</div>
这是红框的层中的内容,对这个红框层
<img src ="http://www.blogjava.net/sealyu/aggbug/308549.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-01-07 14:50 <a href="http://www.blogjava.net/sealyu/archive/2010/01/07/308549.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>使用CSS定位页面的“footer”</title><link>http://www.blogjava.net/sealyu/archive/2010/01/03/308102.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Sun, 03 Jan 2010 12:36:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/01/03/308102.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/308102.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/01/03/308102.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/308102.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/308102.html</trackback:ping><description><![CDATA[<p style="color: #cc0000;">这里还有一种实现技术：http://code.google.com/p/cleanstickyfooter/</p>
<p style="color: #cc0000;"><br />
</p>
<p style="color: #cc0000;">&#8220;如果有一个footer层，我想让他固定出现在整个页面的最下方，不随着页面中的内容而变化，CSS中要怎样设？比如里面是一些版权信息。因为我整页的内容比较少，footer老跟着内容跑到上面去，很不美观。&#8221;
</p>
<p>这个问题如果在以前使用表格布局，并不困难，只要给页面的最外层表格高度设置为100%就可以了，然而，在Web标准的规范中，表格的高度
已经属于废止的属性，应该避免使用，而且使用Web标准以后，也不在提倡使用表格布局了，那么是否有办法使用CSS来实现页面的页脚部分固定在浏览器底端
呢？</p>
<p>下面就来讲解它的实现方法。</p>
<h3 style="border-bottom: 1px solid #cccccc;">基本思路</h3>
<p>首先考虑外层设置一个容器div，id设为#container，使他的高度为浏览器窗口的高度，然后将#footer这个div设置为#container的子div，并使用绝对定位的方式，使他固定到#container的底端，以实现希望的效果。</p>
<p><a target="_blank" href="http://learning.artech.cn/uploads/blog-files/footer_css.htm">点击这里察看案例页面效果。</a> 改变浏览器的高度和宽度，可以看到Footer部分的效果。</p>
<h3 style="border-bottom: 1px solid #cccccc;">代码实现</h3>
<p>下面先考虑HTML结构，这个演示页面的HTML代码非常简单。</p>
<br />
<div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; background-color: #eeeeee; font-size: 13px; width: 98%;"><!--<br />
<br />
Code highlighting produced by Actipro CodeHighlighter (freeware)<br />
http://www.CodeHighlighter.com/<br />
<br />
--><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">body</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">div&nbsp;</span><span style="color: #ff0000;">id</span><span style="color: #0000ff;">="container"</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">div&nbsp;</span><span style="color: #ff0000;">id</span><span style="color: #0000ff;">="content"</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">h1</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;">Content</span><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">h1</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">p</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;">请改变浏览器窗口的高度，以观察footer效果。</span><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">p</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">p</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;">这里是示例文字，&#8230;&#8230;&#8230;，这里是示例文字。</span><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">p</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">div</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">div&nbsp;</span><span style="color: #ff0000;">id</span><span style="color: #0000ff;">="footer"</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">h1</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;">Footer</span><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">h1</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">div</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">div</span><span style="color: #0000ff;">&gt;</span><span style="color: #000000;"><br />
</span><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">body</span><span style="color: #0000ff;">&gt;</span></div>
<p>然后设置CS</p>
<br />
<div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; background-color: #eeeeee; font-size: 13px; width: 98%;"><!--<br />
<br />
Code highlighting produced by Actipro CodeHighlighter (freeware)<br />
http://www.CodeHighlighter.com/<br />
<br />
--><span style="color: #800000;">body,html&nbsp;</span><span style="color: #000000;">{</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;margin</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;0</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;padding</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;0</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;12px/1.5&nbsp;arial</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;height</span><span style="color: #000000;">:</span><span style="color: #0000ff;">100%</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #000000;">}</span><span style="color: #800000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;#container&nbsp;</span><span style="color: #000000;">{</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;min-height</span><span style="color: #000000;">:</span><span style="color: #0000ff;">100%</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;position</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;relative</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #000000;">}</span><span style="color: #800000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;#content&nbsp;</span><span style="color: #000000;">{</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;padding</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;10px</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;padding-bottom</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;60px</span><span style="color: #000000;">;</span><span style="color: #ff0000;">&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #008000;">/*</span><span style="color: #008000;">&nbsp;20px(font-size)x2(line-height)&nbsp;+&nbsp;10px(padding)x2=60px</span><span style="color: #008000;">*/</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #000000;">}</span><span style="color: #800000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;#footer&nbsp;</span><span style="color: #000000;">{</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;position</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;absolute</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bottom</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;0</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;padding</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;10px&nbsp;0</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background-color</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;#AAA</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;width</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;100%</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #000000;">}</span><span style="color: #800000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;#footer&nbsp;h1&nbsp;</span><span style="color: #000000;">{</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font</span><span style="color: #000000;">:</span><span style="color: #0000ff;">&nbsp;20px/2&nbsp;Arial</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;margin</span><span style="color: #000000;">:</span><span style="color: #0000ff;">0</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;padding</span><span style="color: #000000;">:</span><span style="color: #0000ff;">0&nbsp;10px</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #000000;">}</span></div>
<h3 style="border-bottom: 1px solid #cccccc;">要点分析</h3>
<p>1：首先要给html和body元素设置高度（height属性）为100% （第5行），这样先保证根元素的高度撑满整个浏览器窗口，然后下面才能使#container的高度撑满整个浏览器窗口。</p>
<p>至于为什么用同时设置html和body元素，是因为Firefox和IE认为的根元素不一样，因此这里都给他们设置上。</p>
<p>2：然后把#container的高度也设置为100%
（第8行），但是要注意，这里使用了&#8220;min-height&#8221;属性，而不是普通的height属性，这是因为我们要考虑到，如果#content中的内容
如果增加了，他的高度超过了浏览器窗口的高度，那么如果把#container的高度仍然是100%，就会导致#footer仍然定位在浏器窗口的下端，
从而遮盖了#content中的内容。</p>
<p>而使用min-height属性的作用就是使#container的高度&#8220;至少&#8221;为浏览器窗口的高度，而当如果它里面的内容增加了，他的高度会也跟随着增加，这才是我们需要的效果。</p>
<p>但是需要说明的是，在Firefox和IE7中，支持min-height属性，而IE6种，并不支持min-height属性，但是&#8220;歪打正着&#8221;
的是，IE 6中，会把min-height属性解释为height属性，但是IE
6中height属性的效果却是min-height本来应该具有的效果，也就是说，在IE
6中，子div的高度会撑大父div的高度。所以这样正好可以实现在IE6、IE7和Firefox中都可以正确实现我们希望的效果了。</p>
<p>3：接下来，将#container设置为相对定位（第9行），目的是使他成为它里面的#footer的定位基准，也就是所谓的&#8220;最近的定位过的祖先元素&#8221;。</p>
<p>4：然后把#foooter设置为绝对定位（第17行），并使之贴在#container的最下端（第18行）。</p>
<p>5：但是要注意，如果当我们把#foooter贴在#container的最下端以后，他实际上已经和上面的#content这个div重叠了，为
了避免覆盖#content中的内容，我们在#contetn中设置了下侧的padding，使padding-bottom的值等于#footer的高
度（第13行），就可以保证避免覆盖#content的文字了，这个高度的计算注意代码中的注释中给出的计算方法（第14行）。</p>
<p>6：剩下的就没有更多技术需要解释了。如果读者对上面的解释还不十分理解，说明您对CSS的基本概念还了解得不够，先仔细把CSS的核心原理和基本概念彻底搞清楚，再来看这些代码就是很轻松的了。</p>
<p><a target="_blank" href="http://learning.artech.cn/uploads/blog-files/footer_css.htm">点击这里察看案例页面效果。</a></p>
<h3 style="border-bottom: 1px solid #cccccc;">案例总结</h3>
<p>这个看起来并不复杂的代码，去包含了很多CSS的核心概念和原理，因此这里又回到了我们曾经多次给读者的建议上：一定要扎扎实实把CSS的核心原理
搞清楚，特别是CSS的4大核心基石：盒子模型、标准流、浮动、定位。只有把这些核心基础掌握到烂熟于胸的程度，才能游刃有余地进行设计。</p>
<p><br />
</p>
<p><br />
</p>
<p>原理：为了让浏览器识别高度为100%，设置html、body的height:
100%，同时把所有元素的margin和padding设置为0，这样就等于整个浏览器窗口的总高度了，把footer置于最下方，这是footer就
超出这&#8220;100%&#8221;的范围了，为让footer
能够刚好在最下方，给footer加一个等于自身高度的上方的负边距（负的margin）强制把它向上推一个自身的高度，即 margin-top:
负的数值;
。但当内容超过一屏会发现内容会覆盖在footer的上方。所以还要给内容部分设置下方内补丁等于footer的高度，强制把内容部分向上推一个
footer的高度就OK了。（<a href="http://www.2ed.cn/Article-107-11651.shtml" target="_blank">参考文章</a>）</p>
<img src ="http://www.blogjava.net/sealyu/aggbug/308102.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-01-03 20:36 <a href="http://www.blogjava.net/sealyu/archive/2010/01/03/308102.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>CSS教程:完美的绝对底部</title><link>http://www.blogjava.net/sealyu/archive/2010/01/03/308099.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Sun, 03 Jan 2010 11:55:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2010/01/03/308099.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/308099.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2010/01/03/308099.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/308099.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/308099.html</trackback:ping><description><![CDATA[<font color="#ff0000">网页制作Webjx文章简介：</font><font color="#000000">CSS的简单在于它易学，CSS的困难在于寻找更好的解决方案。在CSS的世界里，似乎没有完美这种说法。所以，现在介绍的CSS绝对底部，只是目前个人见过的方案中比较完美的吧。</font>
<p>CSS的简单在于它易学，CSS的困难在于寻找更好的解决方案。在CSS的世界里，似乎没有完美这种说法。所以，现在介绍的CSS绝对底部，只是目前个人见过的方案中比较完美的吧。</p>
<p>先说我们为什么会使用到这个CSS底部布局解决方案:</p>
<p>当做一个页面时，如果页面内容很少，不足于填充一屏的窗口区域，按普通的布局，就会出现下面图片中的样子(也就是底部内容并没有位于窗口的底部，而留下了大量空白。</p>
<p><br />
</p>
<p>对于追未完美的设计师来说，这是不美观的。网上有一些解决方案，但会出现当改变窗口高度时，底部和正文重叠的BUG。尽管没有多少人会有事没事儿的去改变窗口高度，但设计嘛，追求的就是尽善尽美。</p>
<p><br />
</p>
<p>下面是我找到的一个比较完美的方法，来自国外的设计达人，纯CSS，可以实现: 当正文内容很少时，底部位于窗口最下面。当改变窗口高度时，不会出现重叠问题。</p>
<p><br />
</p>
<p>甚至，创造该CSS的人还专门成立一个网站介绍这个CSS底部布局方案。不知道他有没有去申请专利:)</p>
<h3>代码写法</h3>
<p><strong>HTML代码:</strong></p>
<pre><code>&lt;div id="wrap"&gt;<br />
&lt;div id="main" class="clearfix"&gt;<br />
&lt;div id="content"&gt;<br />
&lt;/div&gt;<br />
&lt;div id="side"&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;div id="footer"&gt;<br />
&lt;/div&gt;</code></pre>
<p><strong>说明</strong>: 使用这个布局的前提，就是footer要在总的div容器之外，footer使用一个层，其它所有内容使用一个总的层。如果确实需要到添加其它同级层，那这个同级层就必须使用position:absolute进行绝对定位。</p>
<p><strong>CSS代码:</strong></p>
<p>下面是主要的CSS代码，让你的底部可以位于窗口的最下面:</p>
<pre><code>html, body, #wrap {height: 100%;}<br />
body &gt; #wrap {height: auto; min-height: 100%;}<br />
#main {padding-bottom: 150px;}  /* 必须使用和footer相同的高度 */<br />
#footer {position: relative;<br />
margin-top: -150px; /* footer高度的负值 */<br />
height: 150px;<br />
clear:both;}</code></pre>
<p><strong>说明</strong>: 需要注意的就是#main的padding值、footer的高度和负margin值，需要保持一致。</p>
<p>就是这么简单，不过还没完。如果你的主体是使用悬浮布局，还得解决一些浏览器的兼容问题，这里使用的重点是为了Goolge Chrome。</p>
<p>对#main部份进行著名的<strong>Clearfix Hack</strong>:</p>
<pre><code>.clearfix:after {content: ".";<br />
display: block;<br />
height: 0;<br />
clear: both;<br />
visibility: hidden;}<br />
.clearfix {display: inline-block;}<br />
/* Hides from IE-mac "*/<br />
* html .clearfix { height: 1%;}<br />
.clearfix {display: block;}<br />
/* End hide from IE-mac */</code></pre>
<p>注: 该方案测试于两栏悬浮布局，兼容各大主流浏览器，包括<a href="http://parandroid.com/tag/google-chrome/" target="_blank"><font color="#336699">Google Chrome</font></a>。</p>
<p><strong>P.S</strong>:</p>
<ul>
    <li>网络上之前比较知名的footer布局有<a href="http://ryanfait.com/resources/footer-stick-to-bottom-of-page/"><font color="#336699">Ryan Faits</font></a>创造的，不过它的方法在HTML代码中会有一个空的div层。严格来说，是不符合语义网代码标准的。 </li>
    <li>另外，还有一篇<a href="http://www.alistapart.com/articles/footers/"><font color="#336699">Exploring Footers article from A List Apart</font></a>，但使用了一些JavaScript代码。 </li>
    <li>这样一比较，上面看似简单的纯CSS，就显得伟大许多了。 </li>
</ul>
<p>OK, 没有了。如果没看懂，具体的使用方法和说明可以<a href="http://www.cssstickyfooter.com/using-sticky-footer-code.html"><font color="#336699">到原站查看</font></a>。</p>
<img src ="http://www.blogjava.net/sealyu/aggbug/308099.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2010-01-03 19:55 <a href="http://www.blogjava.net/sealyu/archive/2010/01/03/308099.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>优秀的CSS布局大全</title><link>http://www.blogjava.net/sealyu/archive/2009/12/28/307507.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Mon, 28 Dec 2009 05:55:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2009/12/28/307507.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/307507.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2009/12/28/307507.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/307507.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/307507.html</trackback:ping><description><![CDATA[<p>这份列表收集一些比较优秀的<a href="http://paranimage.com/category/dede/css/">CSS</a>布局，这些布局都免费供个人和商业使用。当然，你使用之前还是得看版权说明，也许会发生许可协议变更。</p>
<ul>
    <li><a title="CSS Layouts - Layout Gala" href="http://blog.html.it/layoutgala/">Layout Gala</a>- 这个网站收集了40多个专业的CSS布局，每个布局都通过了CSS和<a href="http://paranimage.com/category/dede/html">HTML</a>验证，且不需要Hack，兼容各大主流浏览器。<br />
    <img size-full="" wp-image-7684="" title="css-layouts-free" src="http://paranimage.com/wp-content/uploads/2009/02/css-layouts-free.gif" alt="css layouts free 优秀的CSS布局大全" width="430" height="193" /></li>
    <li><a title="collection of CSS layouts" href="http://layouts.ironmyers.com/">CSS Layouts</a> &#8211; 另一个专门收集CSS布局的网站。</li>
    <li><a title="Dynamic drive css layouts" href="http://www.dynamicdrive.com/style/layouts/">Dynamic Drive CSS Layouts</a> &#8211; Dynamic Drive对于喜欢设计的人来说是比较熟悉的网站了，它们同样提供有很多CSS布局，两栏，三栏，自适应宽度，固定宽度都有。</li>
    <li><a title="12 free layouts" href="http://www.mycelly.com/">Nice and Free CSS Layouts</a> &#8211; 12 个免费的CSS布局。<a href="http://www.mycelly.com/"><br />
    </a></li>
    <li><a title="10 free css" href="http://www.strictlycss.com/articles/article/40/the-only-css-layout-you-need">Strictly CSS</a> &#8211; 10个CSS布局。</li>
    <li><a title="maxdesign layouts" href="http://maxdesign.com.au/presentation/page_layouts/">Maxdesign</a> &#8211; 多种CSS布局，且含有详细的说明教程。</li>
    <li><a title="cssplay layouts" href="http://www.cssplay.co.uk/layouts/index.html">CSSplay</a></li>
    <li><a title="CSS Discuss" href="http://css-discuss.incutio.com/?page=ThreeColumnLayouts">ThreeColumnLayouts, by CSS Discuss</a></li>
    <li><a title="layouts and templates" href="http://www.intensivstation.ch/en/templates/">CSS Intensivstation</a></li>
    <li><a title="Code sucks templates" href="http://www.code-sucks.com/free-css-templates/">Code-Sucks</a> -</li>
    <li><a title="tinderbox layouts" href="http://csstinderbox.raykonline.com/">CSS Tinderbox</a></li>
    <li><a title="Jimmy Lin" href="http://www.jimmylin.info/templates.html">Jimmy Lin</a> &#8211; 8 个简单的 CSS/XHTML 模板</li>
    <li><a title="Little boxes css layouts" href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html">Little Boxes</a> &#8211; 16 个CSS布局<a href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html"><br />
    </a></li>
    <li><a title="Ruthsarian layouts and drop-down css menus" href="http://webhost.bridgew.edu/etribou/layouts/index.html">Ruthsarian</a> &#8211;  免费的CSS layouts ，还有CSS下拉菜单</li>
    <li><a title="Mitch Bryson layouts" href="http://mitchbryson.com/free-css-templates">Mitchbryson</a></li>
    <li><a title="TJKDesign" href="http://tjkdesign.com/articles/one_html_markup_many_css_layouts.asp">TJK Design</a></li>
    <li><a title="The layout reservoir" href="http://www.bluerobot.com/web/layouts/">Bluerobot</a></li>
    <li><a title="CSS Creator layout generator" href="http://csscreator.com/tools/layout">csscreator</a> &#8211; CSS 布局生成器.</li>
</ul>
<img src ="http://www.blogjava.net/sealyu/aggbug/307507.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2009-12-28 13:55 <a href="http://www.blogjava.net/sealyu/archive/2009/12/28/307507.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>IE中td内容为空时不显示边框的解决办法（转）</title><link>http://www.blogjava.net/sealyu/archive/2009/12/26/307340.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Sat, 26 Dec 2009 01:35:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2009/12/26/307340.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/307340.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2009/12/26/307340.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/307340.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/307340.html</trackback:ping><description><![CDATA[<p>在ie（经测试IE8已经不存在此问题）中如果td标签中没有内容时，存在不显示边框的问题，最简单的办法就是用javacript，在文档加载完后加入下面的JS：</p>
<div>
<div>
<pre style="font-family: monospace;">var aTd=document.getElementsByTagName("td");<br />
for(i=0;i&lt;aTd.length;i++) {<br />
if(aTd[i].innerHTML=="")aTd[i].innerHTML="&amp;nbsp;";<br />
}</pre>
</div>
</div>
<p>当然还有别的办法，在TD所属的那个table用CSS也是可以的</p>
<div>
<div>
<pre style="font-family: monospace;">table{ border-collapse:collapse;}</pre>
</div>
</div>
<br />
之前<a href="http://www.zeali.net/entry/412" title="bordercolorlight的CSS实现" alt="bordercolorlight的CSS实现">总结了下如何</a>用
css 来实现 table 的 border + bordercolordark + bordercolorlight
的边框明暗效果，然后有网友问我为什么他写了一个类似的 css 样式，但只能在 Opera 下正常看到表格的边框效果， IE 下则什么也没有。
<p>
于是我跑去下了个 Opera9 一看，确实如此。原因倒也不复杂：因为在 IE 下（ Firefox 似乎和 IE 一致）如果某个 td
的内容为空的话，即便你设置了高度和宽度，这个 cell 的边框样式也是不会被显示出来的； Opera
则不管是否有内容与否，一概应用样式来渲染。这个问题刚毕业那会就碰到了，当时部门的科长来问我，后来我跟他说：给每个空的 td 加上 &nbsp;
就行了。以后每次碰到这个问题，我就统统采用这个简单粗暴有效的方式来解决了。</p>
<p>　　但今天卯足了劲研究了几下，从 <a href="http://jiarry.bokee.com/5508063.html" target="_blank">Jiarry</a> 那知道原来 css 语法是允许我们对这些缺省行为进行改变的：使用 <a href="http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/bordercollapse.asp" target="_blank"><font face="courier new,courier,monospace">border-collapse:collapse;</font></a> 和 <a href="http://www.cs.tut.fi/%7Ejkorpela/HTML/emptycells.html" target="_blank"><font face="courier new,courier,monospace">empty-cells:show;</font></a> 就可以让消失的边框显现出来。</p>
<div id="entryBody">
<p><strong>class="test1"</strong>: 加 border-collapse:collapse;<br />
</p>
<pre>.test1{<br />
border:1px solid #999999;<br />
<strong>border-collapse:collapse;</strong><br />
width:60%<br />
}<br />
.test1 td{<br />
border-bottom:1px solid #999999; <br />
height:28px; <br />
padding-left:6px;<br />
}</pre>
<br />
<table border="0" cellpadding="0" cellspacing="0">
    <tbody>
        <tr>
            <td>class1&nbsp;</td>
            <td>这儿有内容</td>
            <td><br />
            </td>
            <td><br />
            </td>
            <td><br />
            </td>
        </tr>
        <tr>
            <td>这儿有内容</td>
            <td><br />
            </td>
            <td><br />
            </td>
            <td><br />
            </td>
            <td>&nbsp;</td>
        </tr>
    </tbody>
</table>
<br />
<p><strong>class="test2"</strong>: 加 border-collapse:collapse; 和 empty-cells:show;<br />
</p>
<pre>.test2{<br />
border:1px solid black;<br />
<strong>border-collapse:collapse;</strong><br />
width:60%<br />
}<br />
.test2 td{<br />
border-bottom:1px solid black; <br />
height:28px; <br />
padding-left:6px;<br />
<strong>empty-cells:show;</strong><br />
}</pre>
<br />
<table border="0" cellpadding="0" cellspacing="0">
    <tbody>
        <tr>
            <td>class2&nbsp;</td>
            <td>这儿有内容</td>
            <td><br />
            </td>
            <td><br />
            </td>
            <td><br />
            </td>
        </tr>
        <tr>
            <td>这儿有内容</td>
            <td><br />
            </td>
            <td><br />
            </td>
            <td><br />
            </td>
            <td>&nbsp;</td>
        </tr>
    </tbody>
</table>
<br />
<p><strong>class="test3"</strong>: 不加 border-collapse:collapse; 和 empty-cells:show; 的情况下 <br />
</p>
<pre>.test3{<br />
border:1px solid #999999;<br />
width:60%<br />
}<br />
.test3 td{<br />
border-bottom:1px solid #999999; <br />
height:28px; <br />
padding-left:6px;<br />
}</pre>
<br />
<table width="177" border="0" cellpadding="0" cellspacing="0" height="48">
    <tbody>
        <tr>
            <td>class3&nbsp;</td>
            <td>这儿有内容</td>
            <td><br />
            </td>
            <td><br />
            </td>
            <td><br />
            </td>
        </tr>
        <tr>
            <td>这儿有内容</td>
            <td><br />
            </td>
            <td><br />
            </td>
            <td><br />
            </td>
            <td>&nbsp;</td>
        </tr>
    </tbody>
</table>
</div>
<br />
<img src ="http://www.blogjava.net/sealyu/aggbug/307340.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2009-12-26 09:35 <a href="http://www.blogjava.net/sealyu/archive/2009/12/26/307340.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>兼容IE和FF的换行CSS推荐样式（转）</title><link>http://www.blogjava.net/sealyu/archive/2009/11/12/302082.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Thu, 12 Nov 2009 05:51:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2009/11/12/302082.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/302082.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2009/11/12/302082.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/302082.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/302082.html</trackback:ping><description><![CDATA[<p>本文列举了兼容 IE 和 FF 的换行 CSS 推荐样式，详细介绍了word-wrap同word-break的区别。</p>
<p><strong>兼容 IE 和 FF 的换行 CSS 推荐样式</strong></p>
<p>最好的方式是<br />
word-wrap:break-word; overflow:hidden;<br />
而不是<br />
word-wrap:break-word; word-break:break-all;<br />
也不是<br />
word-wrap:break-word; overflow:auto;<br />
<br />
在 IE 下没有任何问题，在 FF 下，长串英文会被遮住超出的内容。</p>
<p><strong>word-wrap同word-break的区别</strong></p>
<p>word-wrap:<br />
normal&nbsp;&nbsp; Default. Content exceeds the boundaries of its container. <br />
break-word Content wraps to next line, and a word-break occurs when necessary. 必要时会触发word-break。</p>
<p>word-break:<br />
normal&nbsp;&nbsp; Default. Allows line breaking within words. 好像是只对Asian text起作用。<br />
break-all Behaves the same as normal for Asian text, yet allows the
line to break arbitrarily for non-Asian text. This value is suited to
Asian text that contains some excerpts of non-Asian text. <br />
keep-all Does not allow word breaking for Chinese, Japanese, and
Korean. Functions the same way as normal for all non-Asian languages.
This value is optimized for text that includes small amounts of
Chinese, Japanese, or Korean. </p>
<p>总结如下：<br />
word-wrap是控制换行的。<br />
使用break-word时，是将强制换行。中文没有任何问题，英文语句也没问题。但是对于长串的英文，就不起作用。</p>
<p>break-word是控制是否断词的。<br />
normal是默认情况，英文单词不被拆开。<br />
break-all，是断开单词。在单词到边界时，下个字母自动到下一行。主要解决了长串英文的问题。<br />
keep-all，是指Chinese, Japanese, and Korean不断词。即只用此时，不用word-wrap，中文就不会换行了。（英文语句正常。）</p>
<p><br />
ie下：<br />
使用word-wrap:break-word;所有的都正常。</p>
<p>ff下：<br />
如这2个都不用的话，中文不会出任何问题。英文语句也不会出问题。但是，长串英文会出问题。<br />
为了解决长串英文，一般用word-wrap:break-word;word-break:break-all;。但是，此方式会导致，普通的英文语句中的单词会被断开（ie下也是）。</p>
<p>目前主要的问题存在于 长串英文 和 英文单词被断开。其实长串英文就是一个比较长的单词而已。<br />
即英文单词应不应该被断开那？那问题很明显了，显然不应该被断开了。<br />
对于长串英文，就是恶意的东西，自然不用去管了。但是，也要想些办法，不让它把容器撑大。<br />
用：overflow:auto; ie下，长串会自动折行。ff下，长串会被遮盖。</p>
<p><br />
所以，综上，<font color="#ff0000">最好的方式是word-wrap:break-word;overflow:hidden;</font>而不是word-wrap:break-word;word-break:break-all;。<br />
word-wrap:break-word;overflow:auto;在ie下没有任何问题。在ff下，长串会被遮住部分内容。</p>
<p>另，测试代码如下：<br />
<br />
&lt;style&gt;<br />
.c1{ width:300px;&nbsp;&nbsp; border:1px solid red}<br />
.c2{ width:300px;word-wrap:break-word;&nbsp;&nbsp; border:1px solid yellow}<br />
.c3{ width:300px;word-wrap:break-word;word-break:break-all;&nbsp;&nbsp; border:1px solid green}<br />
.c4{ width:300px;word-wrap:break-word;word-break:keep-all; border:1px solid blue}<br />
.c5{ width:300px;word-break:break-all;&nbsp;&nbsp; border:1px solid black}<br />
.c6{ width:300px;word-break:keep-all;&nbsp;&nbsp; border:1px solid red}<br />
.c7{ width:300px;word-wrap:break-word;overflow:auto;&nbsp;&nbsp; border:1px solid yellow}<br />
&lt;/style&gt;</p>
<p>.c1{ width:300px;&nbsp;&nbsp; border:1px solid red}</p>
<p style="text-indent: 2em;">&lt;div class="c1"&gt;safjaskflasjfklsajfklasjflksajflksjflkasjfksafj&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c1&gt;This is all English. This is all English. This is all English.&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c1&gt;全是中文的情况。全是中文的情况。全是中文的情况。&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c1&gt;中英文混排的情况。Chinese and English. 中英文混排的情况。Chinese and English. &lt;/div&gt; </p>
<p style="text-indent: 2em;">.c2{ width:300px;word-wrap:break-word; border:1px solid yellow}</p>
<p style="text-indent: 2em;">&lt;div class="c2"&gt;safjaskflasjfklsajfklasjflksajflksjflkasjfksafj&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c2&gt;This is all English. This is all English. This is all English.&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c2&gt;全是中文的情况。全是中文的情况。全是中文的情况。&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c2&gt;中英文混排的情况。Chinese and English. 中英文混排的情况。Chinese and English. &lt;/div&gt;</p>
<p style="text-indent: 2em;">.c3{ width:300px;word-wrap:break-word;word-break:break-all;&nbsp;&nbsp; border:1px solid green}</p>
<p style="text-indent: 2em;">&lt;div class="c3"&gt;safjaskflasjfklsajfklasjflksajflksjflkasjfksafj&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c3&gt;This is all English. This is all English. This is all English.&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c3&gt;全是中文的情况。全是中文的情况。全是中文的情况。&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c3&gt;中英文混排的情况。Chinese and English. 中英文混排的情况。Chinese and English. &lt;/div&gt;</p>
<p style="text-indent: 2em;">.c4{ width:300px;word-wrap:break-word;word-break:keep-all; border:1px solid blue}</p>
<p style="text-indent: 2em;">&lt;div class="c4"&gt;safjaskflasjfklsajfklasjflksajflksjflkasjfksafj&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c4&gt;This is all English. This is all English. This is all English.&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c4&gt;全是中文的情况。全是中文的情况。全是中文的情况。&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c4&gt;中英文混排的情况。Chinese and English. 中英文混排的情况。Chinese and English. &lt;/div&gt;</p>
<p style="text-indent: 2em;">.c5{ width:300px;word-break:break-all;&nbsp;&nbsp; border:1px solid black}</p>
<p style="text-indent: 2em;">&lt;div class="c5"&gt;safjaskflasjfklsajfklasjflksajflksjflkasjfksafj&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c5&gt;This is all English. This is all English. This is all English.&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c5&gt;全是中文的情况。全是中文的情况。全是中文的情况。&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c5&gt;中英文混排的情况。Chinese and English. 中英文混排的情况。Chinese and English. &lt;/div&gt;</p>
<p style="text-indent: 2em;">.c6{ width:300px;word-break:keep-all;&nbsp;&nbsp; border:1px solid red}</p>
<p style="text-indent: 2em;">&lt;div class="c6"&gt;safjaskflasjfklsajfklasjflksajflksjflkasjfksafj&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c6&gt;This is all English. This is all English. This is all English.&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c6&gt;全是中文的情况。全是中文的情况。全是中文的情况。&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c6&gt;中英文混排的情况。Chinese and English. 中英文混排的情况。Chinese and English. &lt;/div&gt;</p>
<p style="text-indent: 2em;">.c7{ width:300px;word-wrap:break-word;overflow:auto;&nbsp;&nbsp; border:1px solid yellow}</p>
<p style="text-indent: 2em;">&lt;div class="c7"&gt;safjaskflasjfklsajfklasjflksajflksjflkasjfksafj&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c7&gt;This is all English. This is all English. This is all English.&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c7&gt;全是中文的情况。全是中文的情况。全是中文的情况。&lt;/div&gt;</p>
<p style="text-indent: 2em;">&lt;div class=c7&gt;中英文混排的情况。Chinese and English. 中英文混排的情况。Chinese and English. &lt;/div&gt;</p>
<img src ="http://www.blogjava.net/sealyu/aggbug/302082.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2009-11-12 13:51 <a href="http://www.blogjava.net/sealyu/archive/2009/11/12/302082.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>精选31个网站界面设计实践教程（转）</title><link>http://www.blogjava.net/sealyu/archive/2009/09/25/296474.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Fri, 25 Sep 2009 14:25:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2009/09/25/296474.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/296474.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2009/09/25/296474.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/296474.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/296474.html</trackback:ping><description><![CDATA[<p><a href="http://blog.bingo929.com/31-practical-web-interface-design-tutorials.html"><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/web-interface-design.jpg" alt="网页设计-教程" height="463" width="500" /></a></p>
<p>　　<strong>设计一个网站从来都不是一件容易的事。</strong>如果你去询问一位在该行业有丰富经验的网页设计师，他会告诉你以前根本没有太多关于Web设计/开发的资源、文章和各种沟通交流平台，更不用说高质量免费教程了。</p>
<p>　　如果您打算建立自己的个人网站或者重新设计您的博客的主题，现在看来已经不是很难了。这要感谢那些慷慨的设计师和撰稿者们，现在互联网充满着各
种很棒的教程来帮助你逐步建立自己的网站界面及导航。这篇文章只是让大家浅尝辄止，更多的学习资源大家可以自行寻找。我们以前曾发表过<a href="http://www.hongkiat.com/blog/40-greatest-web-interface-design-tutorials-photoshop-tutorial/" target="_blank">40个非常棒的网站界面设计PHOTOSHOP教程</a>。而今天让暴风彬彬和您一同分享这<strong>31个网站界面设计实践教程</strong>吧。</p>
<p><strong>您还可以参考彬Go的相关网页设计教程类文章:</strong><br />
《<a title="推荐20个关于网站可用性及界面设计的网站" href="http://blog.bingo929.com/20-websites-web-design-usabillity.html">推荐20个关于网站可用性及界面设计的网站</a>》<br />
《<a title="网页设计教程:使用Photoshop设计一个高档时尚的网页" href="http://blog.bingo929.com/a-sleek-high-end-web-design.html">网页设计教程:使用Photoshop设计一个高档时尚的网页</a>》<br />
《<a title="视频教程:非常酷的3D效果网页设计" href="http://blog.bingo929.com/web-design-cool-3d-effect.html">视频教程:非常酷的3D效果网页设计</a>》&nbsp;</p>
<p>　　彬Go会经常更新网页设计/前端开发类教程，如果您想所示关注本博客的最新更新教程，欢迎RSS<a href="http://feed.feedsky.com/bingo929" target="_blank">订阅本博客</a>，以便您能第一时间浏览彬Go的最新网页设计教程。<a href="http://feed.feedsky.com/bingo929" target="_blank"><img src="http://img.feedsky.com/images/icon_sub_c1s16.gif" alt="订阅彬Go" style="border: 0px none ; padding-top: 10px;" height="16" width="50" /></a>&nbsp;</p>
<h3>页头及导航设计</h3>
<p>　　为网站创建有效的导航对于网站浏览者的浏览及导航起到至关重要的作用。我们为您精选了以下时尚且简单的导航设计教程，当您掌握这些教程之后，进行各种调节及变化将变得非常容易。</p>
<p><span style="font-size: medium;">1.</span><a href="http://www.idotutorials.com/2008/09/20/retro-dark-blue-header-design/"><strong><span style="font-size: medium;">Retro Dark Blue Header Design</span></strong></a></p>
<p>教您如何设计一个深蓝色复古圆角网站页头。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/retro-dark-blue.jpg" alt="网页-设计-教程" height="171" width="500" /></p>
<p><span style="font-size: medium;">2.</span><a href="http://www.originmaker.com/2008/wii-web-header-photoshop/"><strong><span style="font-size: medium;">Wii Web Header</span></strong></a></p>
<p>　　教您如何设计一个WII风格的网站页头。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/wii-navigation.jpg" alt="网页设计" height="105" width="500" /></p>
<p><span style="font-size: medium;">3.</span><a href="http://www.idotutorials.com/2008/09/21/colorful-design-studio-header/"><strong><span style="font-size: medium;">Colorful Design Studio Header</span></strong></a></p>
<p>如何设计一个色彩艳丽的工作室页头布局。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/studio-header.jpg" alt="网站界面-设计" height="278" width="500" /></p>
<p><span style="font-size: medium;">4.<a href="http://www.quicktutorials.net/2008/10/25/metallic-header-design-in-photoshop/"><strong>Metallic Header Design</strong></a></span></p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/metallic-header.jpg" alt="网站设计-教程" height="268" width="500" /></p>
<p><span style="font-size: medium;">5.<a href="http://www.webzo.org/tutorials/adobe-photoshop/design-nature-theme-header-for-web-site.php"><strong>Nature Theme Header</strong></a></span></p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/nature-design.jpg" alt="网站界面-设计教程" height="200" width="500" /></p>
<p><span style="font-size: medium;">6.</span><a href="http://www.idotutorials.com/2008/09/03/professional-dark-header/"><strong><span style="font-size: medium;">Professional Dark Header</span></strong></a></p>
<p>如何为您的网站创建一个简单且有效的网站导航栏。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/dark-header.jpg" alt="网页设计-实例" height="132" width="500" /></p>
<p><span style="font-size: medium;">7.</span><a href="http://www.tutorialpark.com/effects/high-detailed-plastic-navigation-bar/"><strong><span style="font-size: medium;">High-Detailed Plastic Navigation Bar</span></strong></a></p>
<p>导航菜单可以使用不寻常的文本链接到结构复杂的下拉菜单。这个教程详细描述了设计&#8221;塑料&#8221;风格导航菜单的过程。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/plastic-nav-bar.jpg" alt="网页-设计-教程" height="259" width="500" /></p>
<p><span style="font-size: medium;">8.</span><a href="http://photoshopandyou.com/tutorials/curled-corner/"><strong><span style="font-size: medium;">Curled Corner</span></strong></a></p>
<p>教您如何设计一个光滑的内容区。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/curled-corner.jpg" alt="网页设计" height="300" width="500" /></p>
<p><span style="font-size: medium;">9.</span><a href="http://psdlounge.com/tutorials/green-navigation/"><strong><span style="font-size: medium;">Green Navigation</span></strong></a></p>
<p>如何设计一个绿色发光效果的导航。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/green-navigation.jpg" alt="网站界面-设计" height="200" width="500" /></p>
<p><span style="font-size: medium;">10.</span><a href="http://photoshoptutorials.ws/photoshop-tutorials/layouts/blue-on-black-navigation-bar.html"><strong><span style="font-size: medium;">Blue On Black Navigation Bar</span></strong></a></p>
<p>如何结合几种图层样式来设计漂亮而简单的导航栏。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/blue-on-black-nav-bar.jpg" alt="网站设计-教程" height="176" width="500" /></p>
<p><span style="font-size: medium;">11.</span><a href="http://photoshoptutorials.ws/photoshop-tutorials/layouts/clean-white-navigation-bar.html"><strong><span style="font-size: medium;">Clean White Navigation Bar</span></strong></a></p>
<p>简洁是漂亮网站的关键，学习如何使用PHOTOSHOP绘制一个漂亮的导航栏。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/clean-white-navigation.jpg" alt="网站界面-设计教程" height="172" width="500" /></p>
<p><span style="font-size: medium;">12.</span><strong><span style="font-size: medium;"><a href="http://www.idotutorials.com/?p=52">Modern Web Search Bar</a></span></strong></p>
<p>如何设计一个流行的带下拉菜单的搜索栏。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/modern-search.jpg" alt="网页设计-实例" height="150" width="500" /></p>
<p><span style="font-size: medium;">13.</span><a href="http://psfreak.com/2008/02/16/stylish-dark-navigation-box/"><strong><span style="font-size: medium;">Dark Navigation Box</span></strong></a></p>
<p>如何使用更多的效果和工具来设计更高级的导航。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/dark-navigation-ox.jpg" alt="网页-设计-教程" height="329" width="500" /></p>
<p><span style="font-size: medium;">14.</span><a href="http://psfreak.com/2008/02/09/clean-blue-navigation-box/"><strong><span style="font-size: medium;">Clean Blue Navigation Box</span></strong></a></p>
<p>如何使用一些工具和效果为网站布局设计一个导航，这种方法同样适用于设计其他内容区等。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/clean-blue-navigation.jpg" alt="网页设计" height="351" width="500" /></p>
<p><span style="font-size: medium;">15.</span><a href="http://www.idotutorials.com/2008/10/06/create-a-professional-gaming-header/"><strong><span style="font-size: medium;">Create A Professional Gaming Header</span></strong></a></p>
<p>如何设计一个专业的游戏网站导航栏。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/game-header.jpg" alt="网站界面-设计" height="180" width="500" /></p>
<p>16.<a href="http://pshero.com/archives/volkswagen-inspired-navigation"><strong>Volkswagen Inspired Navigation</strong></a></p>
<p>大众汽车风格的导航栏。本教程需要你足够了解PHOTOSHOP。你需要了解图层调色板和如何添加图层样式，并且会使用自定义图形和剪切遮罩。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/Volkswagen-Inspired-Navigation.jpg" alt="网站设计-教程" height="250" width="500" /></p>
<p><span style="font-size: medium;">17.</span><a href="http://www.blogperfume.com/photoshop-tutorial-designing-a-unique-bookmark-box/"><strong><span style="font-size: medium;">Design A Unique Bookmark Box</span></strong></a></p>
<p>如何为您的博客设计独特且专业的书签板块，当然也可用于您的网站。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/bookmark-box.jpg" alt="网站界面-设计教程" height="146" width="500" /></p>
<h3>网站整体布局设计</h3>
<p>对于那些想要独立设计自己的网站有没有什么头绪的站长，这里有一些教程能够帮你您从头到尾合计网站的布局。</p>
<p><span style="font-size: medium;">1.</span><a href="http://www.tutzor.com/index.php/2008/09/the-art-institute-photoshop-template/"><strong><span style="font-size: medium;">The Art Institute Photoshop Template</span></strong></a></p>
<p>简单几步创建时尚的网站模板。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/art-institute.jpg" alt="网页设计-实例" height="463" width="500" /></p>
<p><span style="font-size: medium;">2.</span><strong><span style="font-size: medium;"><a href="http://www.talk-mania.com/photoshop-tutorials-talk-mania-members/42448-arhitecture-layout.html">Talkmania Arhitecture Layout</a></span></strong></p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/talkmania.jpg" alt="网页-设计-教程" height="400" width="500" /></p>
<p><span style="font-size: medium;">3.</span><a href="http://www.adobetutorialz.com/articles/3017/2/Creative-Studio-Web-Page"><strong><span style="font-size: medium;">Creative Studio Web Page</span></strong></a></p>
<p>创建工作室网站页面</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/creative-studio.jpg" alt="网页设计" height="350" width="500" /></p>
<p><span style="font-size: medium;">4.</span><a href="http://phonuts.org/?p=585"><strong><span style="font-size: medium;">Clean Black And Green Webdesign</span></strong></a></p>
<p>简洁的黑色和绿色网页设计</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/green-black-layout.jpg" alt="网站界面-设计" height="400" width="500" /></p>
<p><span style="font-size: medium;">5.</span><a href="http://psdfan.com/designing/design-a-unique-grungy-website/"><strong><span style="font-size: medium;">Unique Grungy Website Layout</span></strong></a></p>
<p>如何设计独特的有破旧感的网站布局</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/design-grunge-layout.jpg" alt="网站设计-教程" height="400" width="500" /></p>
<p><span style="font-size: medium;">6.</span><a href="http://smashingpoint.com/clean-business-layout-tutorial.html"><strong><span style="font-size: medium;">Clean Business Layout Tutorial</span></strong></a></p>
<p>简洁的商业网站布局设计教程</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/smashingpoint.jpg" alt="网站界面-设计教程" height="443" width="500" /></p>
<p><span style="font-size: medium;">7.</span><a href="http://photoshopandyou.com/tutorials/web-20-style-blog/"><strong><span style="font-size: medium;">Web 2.0 Blog Layout</span></strong></a></p>
<p>本教程包含了一些比较新颖的技术，比如使用有趣的投影元素。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/web20-style-design.jpg" alt="网页设计-实例" height="333" width="500" /></p>
<p><span style="font-size: medium;">8.</span><a href="http://pushstandards.com/2008/03/the-ultimate-grunge-design-tutorial/"><strong><span style="font-size: medium;">The Ultimate Grunge Design Tutorial</span></strong></a></p>
<p>本教程将讨论如何使用PHOTOSHOP设计美妙的破旧风格网站布局，其中使用的一些技术是我在其他地方没有看到过的。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/love-grunge.jpg" alt="网页-设计-教程" height="376" width="500" /></p>
<p><span style="font-size: medium;">9.</span><a href="http://www.depiction.net/tutorials/photoshop/realestatedesign.php"><strong><span style="font-size: medium;">Real Estate Web Design</span></strong></a></p>
<p>设计简洁且有当代风格的房地产相关类型网站。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/design-real-estate.jpg" alt="网页设计" height="380" width="500" /></p>
<p><span style="font-size: medium;">10.</span><strong><span style="font-size: medium;"><a href="http://www.talk-mania.com/web-layouts/39171-design-agency-layout-tutorial-151-a.html">Agency Layout</a></span></strong></p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/agency-layout.jpg" alt="网站界面-设计" height="507" width="500" /></p>
<p><span style="font-size: medium;">11.</span><a href="http://www.blog.spoongraphics.co.uk/tutorials/create-a-vibrant-modern-blog-design-in-adobe-photoshop"><strong><span style="font-size: medium;">Vibrant Modern Blog Design In Photoshop</span></strong></a></p>
<p>使用Adobe Photoshop设计一个色彩鲜明的流行博客布局。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/springy.jpg" alt="网站设计-教程" height="305" width="500" /></p>
<p><span style="font-size: medium;">12.</span><a href="http://www.adobetutorialz.com/articles/2931/1/Photography-portfolio"><strong><span style="font-size: medium;">Photography Portfolio</span></strong></a></p>
<p>设计一个摄影类网站。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/photography-portfolio.jpg" alt="网站界面-设计教程" height="508" width="500" /></p>
<p><span style="font-size: medium;">13.</span><a href="http://www.iamsuthan.com/first-web-design-tutorial/"><strong><span style="font-size: medium;">Konvicted Art</span></strong></a></p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/konvictedarts.jpg" alt="网页设计-实例" height="586" width="500" /></p>
<p><span style="font-size: medium;">14.</span><a href="http://www.flash-game-design.com/tutorials/dtWebLayout-photoshop-tutorial.html"><strong><span style="font-size: medium;">Unique Desktop Layout</span></strong></a></p>
<p>设计一个独特的桌面布局网站，包括一些常用的办公工具元素。</p>
<p><img src="http://blog.bingo929.com/wp-content/uploads/2008/11/31-Web-Design-Tutorials/desktop-layout.jpg" alt="网页设计-实例" height="393" width="500" /></p>
<p>英文原文:<a href="http://www.hongkiat.com/blog/31-practical-web-interface-design-tutorials/">31 Practical (Web) Interface Design Tutorials<br />
</a>翻译原文:<a href="http://blog.bingo929.com/31-practical-web-interface-design-tutorials.html">精选31个网站界面设计实践教程</a></p>
<p style="border: 1px solid #afedff; padding: 10px; display: block; background-color: #e9faff;"><strong><span style="color: #ff0000;">转载声明:</span></strong><br />
原载:<a href="http://blog.bingo929.com/">彬Go</a><br />
本文链接:<a title="精选31个网站界面设计实践教程" href="http://blog.bingo929.com/31-practical-web-interface-design-tutorials.html">http://blog.bingo929.com/31-practical-web-interface-design-tutorials.html</a><br />
如需转载必须以链接形式注明原载或原文地址，谢谢合作</p>
<img src ="http://www.blogjava.net/sealyu/aggbug/296474.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2009-09-25 22:25 <a href="http://www.blogjava.net/sealyu/archive/2009/09/25/296474.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>10个非常棒的Ajax及Javascript实例资源网站（转）</title><link>http://www.blogjava.net/sealyu/archive/2009/09/25/296469.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Fri, 25 Sep 2009 13:34:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2009/09/25/296469.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/296469.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2009/09/25/296469.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/296469.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/296469.html</trackback:ping><description><![CDATA[　今天，暴风彬彬要向大家推荐10个相当棒的Ajax和Javascript国外资源网站或博客，它们提供了相当多的高质量Ajax、Javascript实例及教程，喜欢Ajax和Javascript的朋友绝对不能错过。彬Go曾经还介绍过<a href="http://blog.bingo929.com/300-jquery-css-mootools-js-navigation-menus.html" target="_blank">300多个Javascript导航菜单</a>,有兴趣的话，也可以看一看。
<h3>1.<a href="http://www.ajaxrain.com/">Ajax Rain</a></h3>
<p><img size-medium="" wp-image-1793="" title="ajax-javascript-资源" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript1.jpg" alt="" height="185" width="500" /></p>
<p>　　AjaxRain有很多完美整合AJAX, CSS, DHTML 或 Javascript的实例，有一些Demo的确值得你去看一看，即使你不是网页设计(开发)师。</p>
<p><strong>Ajax/Javascript实例:</strong></p>
<ul>
    <li>&nbsp;<a href="http://www.lubber.de/extjs/datepickerplus/">EXT JS Date Picker</a></li>
    <li>&nbsp;<a href="http://www.webappers.com/2008/10/06/jquery-feed-menu-for-multiple-feeds/">jQuery Feed Menu</a></li>
    <li>&nbsp;<a href="http://stanlemon.net/projects/jgrowl.html#samples">jGrowl</a></li>
    <li>&nbsp;<a href="http://labs.activespotlight.net/jQuery/menu_demo.html">FastFind Menu &#8211; Jquery</a></li>
    <li>&nbsp;<a href="http://q42.nl/spiffy/accordion/">Spiffy Accordion</a></li>
</ul>
<p><br />
</p>
<h3>2.<a href="http://www.ajaxdaddy.com/">Ajax Daddy</a></h3>
<p><img size-medium="" wp-image-1794="" title="ajax-javascript-教程" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript2.jpg" alt="ajax-javascript-教程" height="185" width="500" /></p>
<p>　　Ajax Daddy收集了大量漂亮的Web2.0工具，其中一个使用的功能就是，在你把某个Ajax/Javascript实例应用在自己的网站上之前，你可以在它上面先看看效果演示。</p>
<p><strong>Ajax/Javascript实例:</strong></p>
<ul>
    <li><a href="http://www.ajaxdaddy.com/flickr-like-edit-in-place.html">Flickr Like edit</a></li>
    <li>&nbsp;<a href="http://www.ajaxdaddy.com/mootools-autocomplete.html">MooTools Autocomplete</a></li>
    <li>&nbsp;<a href="http://www.ajaxdaddy.com/demo-slideshow-viewer.html">SlideShow Viewer</a></li>
    <li>&nbsp;<a href="http://www.ajaxdaddy.com/demo-prototype-window.html">Prototype window</a></li>
    <li>&nbsp;<a href="http://www.ajaxdaddy.com/demo-jquery-shoutbox.html">Shoutbox</a></li>
</ul>
<p><br />
</p>
<h3>3.<a href="http://miniajax.com/">Mini Ajax</a></h3>
<p><img size-medium="" wp-image-1795="" title="ajax-javascript-实例" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript3.jpg" alt="ajax-javascript-实例" height="185" width="500" /></p>
<p>　　MiniAJAX 是一个新生的网站，收集了少许 DHTML 和 AJAX 脚本, 它的代码片段风格非常实用。</p>
<p><strong>Ajax/Javascript实例:</strong></p>
<ul>
    <li><a href="http://prototype-window.xilinus.com/">Prototype Window &#8211; Demo</a></li>
    <li>&nbsp;<a href="http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/">AJAX Star Rating Bar &#8211; Demo</a></li>
    <li>&nbsp;<a href="http://www.labsmedia.com/clickheat/">Heatmap for your website</a></li>
    <li>&nbsp;<a href="http://www.dustindiaz.com/ajax-contact-form/">An AJAX contact form</a></li>
    <li>&nbsp;<a href="http://leftlogic.com/lounge/articles/jquery_spy2/">Digg &#8211; like spy script</a></li>
</ul>
<h3>4.<a href="http://ajaxian.com/">Ajaxian</a></h3>
<div><img size-medium="" wp-image-1796="" title="ajax-javascript-源码" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript4.jpg" alt="ajax-javascript-源码" height="185" width="500" /></div>
<p>　　一个接近于门户类型的AJAX资源站点，包括Ajax示例收集，博客，论坛和教程等等。</p>
<p><strong>Ajax/Javascript实例:</strong></p>
<ul>
    <li><a href="http://ajaxian.com/archives/csshttprequest-cross-domain-ajax-using-css-for-transport">CSSHttpRequest</a></li>
    <li><a href="http://ajaxian.com/archives/ajaxified-body-when-to-refresh-the-page">Ajaxified Body</a></li>
    <li><a href="http://ajaxian.com/archives/flxhr-flash-based-xhr-from-flensed">flXHR: Flash based XHR from flensed</a></li>
    <li><a href="http://ajaxian.com/archives/jstree-jquery-based-javascript-tree-component">jsTree: jQuery-based JavaScript tree component</a></li>
    <li><a href="http://ajaxian.com/archives/modulesjs-a-new-stand-alone-javascript-module-loader">modules.js</a></li>
</ul>
<p><br />
</p>
<h3>5.<a href="http://www.dhtmlgoodies.com/">DHTML Goodies</a></h3>
<div><img size-medium="" wp-image-1797="" title="ajax-javascript-教程" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript5.jpg" alt="ajax-javascript-教程" height="185" width="500" /></div>
<div>　　DHTML Goodies是一个收集了大量DHTML、Ajax脚本、Demo和教程的网站。脚本范围涵盖从导航菜单、窗口、日历到图片集合。</div>
<div><strong>Ajax/Javascript实例:</strong></div>
<ul>
    <li><a href="http://www.dhtmlgoodies.com/index.html?page=formWidgets">Quick Edit</a></li>
    <li><a href="http://www.dhtmlgoodies.com/index.html?page=smallscripts">News rotator</a></li>
    <li><a href="http://www.dhtmlgoodies.com/index.html?page=formWidgets">Color picker script</a></li>
    <li><a href="http://www.dhtmlgoodies.com/index.html?page=chess#chesstr">Chesswidget</a></li>
    <li><a href="http://www.dhtmlgoodies.com/index.html?page=dhtml-suite">Chained select widget</a></li>
</ul>
<p><br />
</p>
<h3>6.<a href="http://www.javascriptkit.com/">Javascript Kit</a></h3>
<div><img size-medium="" wp-image-1798="" title="ajax-javascript-资源" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript6.jpg" alt="ajax-javascript-资源" height="185" width="500" /></div>
<p>　　收集了大量的Javascript教程及脚本资源，当然也有DHTML、CSS和网页设计教程和一个设计师帮助论坛。</p>
<p><strong>Ajax/Javascript实例:</strong></p>
<ul>
    <li>&nbsp;<a href="http://www.javascriptkit.com/script/script2/richhtmlticker.shtml">Rich HTML Ticker</a></li>
    <li>&nbsp;<a href="http://www.javascriptkit.com/script/cutindex3.shtml">Scrollers</a></li>
    <li>&nbsp;<a href="http://www.javascriptkit.com/script/cutindex16.shtml">Combo Boxes</a></li>
    <li>&nbsp;<a href="http://www.javascriptkit.com/script/cutindex17.shtml">Text effects</a></li>
    <li>&nbsp;<a href="http://www.javascriptkit.com/script/cutindex12.shtml">Windows, remotes, frames etc</a></li>
</ul>
<p><br />
</p>
<h3>7.<strong><a href="http://www.dynamicdrive.com/">Dynamic Drive</a></strong></h3>
<p><strong><img size-medium="" wp-image-1799="" title="ajax-javascript-源码" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript7.jpg" alt="ajax-javascript-源码" height="185" width="500" /></strong></p>
<p>　　一个我常去的&nbsp;JavaScript和 CSS资源网站，即使你是初学者，也能找到DHTML、Javascript、客户端脚本详细的指导。</p>
<p><strong>Ajax/Javascript实例:</strong></p>
<ul>
    <li>&nbsp;<a href="http://www.dynamicdrive.com/dynamicindex4/stepcarousel.htm">Step Carousel Viewer</a></li>
    <li>&nbsp;<a href="http://www.dynamicdrive.com/dynamicindex17/ajaxpaginate/index.htm">Ajax Pagination script</a></li>
    <li>&nbsp;<a href="http://www.dynamicdrive.com/dynamicindex1/ddlevelsmenu/index.htm">All Levels Navigational Menu</a></li>
    <li>&nbsp;<a href="http://www.dynamicdrive.com/dynamicindex13/circletext.htm">Circling text trail</a></li>
    <li>&nbsp;<a href="http://www.dynamicdrive.com/dynamicindex5/overlapcontent.htm">Drop Down/ Overlapping Content</a></li>
</ul>
<p><br />
</p>
<h3>8.<a href="http://www.dhtmlsite.com/">DHTML Site</a></h3>
<div><img size-medium="" wp-image-1800="" title="ajax-javascript" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript8.jpg" alt="ajax-javascript" height="185" width="500" /></div>
<p>　　你能从DHTML Site找到大量游泳的AJAX及DHTML脚本及教程，脚本涵盖页面效果、工具技巧、拖拽式日历、窗口特效及图片集效果。</p>
<p><strong>Ajax/Javascript实例:</strong></p>
<ul>
    <li>&nbsp;<a href="http://dhtmlsite.com/tutorials/show_news.php?subaction=showfull&amp;id=1200196183&amp;archive=&amp;template=top">Starbox &#8211; rating stars for prototype</a></li>
    <li>&nbsp;<a href="http://dhtmlsite.com/tutorials/show_news.php?subaction=showfull&amp;id=1200195594&amp;archive=&amp;template=top">Multibox gallery</a></li>
    <li>&nbsp;<a href="http://dhtmlsite.com/tutorials/show_news.php?subaction=showfull&amp;id=1195282856&amp;archive=&amp;template=top">MooMonth</a></li>
    <li>&nbsp;<a href="http://dhtmlsite.com/tutorials/show_news.php?subaction=showfull&amp;id=1195112122&amp;archive=&amp;template=top">jQuery Lightbox</a></li>
    <li>&nbsp;<a href="http://dhtmlsite.com/tutorials/show_news.php?subaction=showfull&amp;id=1192005165&amp;archive=&amp;template=top">Sliding Panels for jQuery</a></li>
</ul>
<p><br />
</p>
<h3>9.<a href="http://ajax.solutoire.com/">Solutoire</a></h3>
<div><img size-medium="" wp-image-1801="" title="ajax-javascript-资源" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript9.jpg" alt="ajax-javascript-资源" height="185" width="500" /></div>
<p>　　这个网站收集了相当多且很棒的javascript和ajax的实例及教程. 还有很多&nbsp;jQuery、Scriptaculous、mootools等Javascript框架。</p>
<p><strong>Ajax/Javascript实例:</strong></p>
<ul>
    <li><a href="http://aka-fotos.de/web/?ajax/uniajax">Uniajax</a></li>
    <li><a href="http://rubens.wordpress.com/2006/02/09/ajax-autocomplete-with-dwr/">Simple Scriptaculous autocomplete</a></li>
    <li><a href="http://www-128.ibm.com/developerworks/websphere/library/techarticles/0606_barcia/0606_barcia.html">Build SOA Ajax clients with the Dojo toolkit</a></li>
    <li><a href="http://www.webreference.com/programming/javascript/jf/column12/index.html">How to Develop WebApps with Ajax, Pt. 1</a></li>
    <li><a href="http://gwt.components.googlepages.com/auto-completiontextbox">GWT Autocompleting Textbox</a></li>
</ul>
<p><br />
</p>
<h3>10.<a href="http://www.devsnippets.com/">DevSnippets</a></h3>
<div><img size-medium="" wp-image-1792="" title="ajax-javascript-资源" src="http://blog.bingo929.com/wp-content/uploads/2008/10/ajax-javascript10-500x185.jpg" alt="ajax-javascript-资源" height="185" width="500" /></div>
<div>　　收集了大量Ajax, javascript和CSS资源，在这里你可以提交自己喜欢的Ajax和Javascript实例，也可以为你喜欢的实例投票。</div>
<p><strong>Ajax/Javascript实例:</strong></p>
<ul>
    <li>&nbsp;<a href="http://devsnippets.com/design-elements/jqir-jquery-image-replacemen.html">jQIR &#8211; jQuery Image Replacemen</a></li>
    <li><a href="http://devsnippets.com/design-elements/the-ajax-suite-10-2.html">The Ajax Suite</a></li>
</ul>
<p><a href="http://devsnippets.com/article/10-best-sources-of-ajaxjavascript-examples-and-demos.html" target="_blank">阅读英文原文</a></p>
<p style="border: 1px solid #afedff; padding: 10px; display: block; background-color: #e9faff;"><strong><span style="color: #ff0000;">转载声明:</span></strong><br />
原载:<a href="http://blog.bingo929.com/">彬Go</a><br />
本文链接:<a href="http://blog.bingo929.com/10-sources-ajax-javascript.html">http://blog.bingo929.com/10-sources-ajax-javascript.html</a><br />
如需转载必须以链接形式注明原载或原文地址，谢谢合作</p>
<img src ="http://www.blogjava.net/sealyu/aggbug/296469.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2009-09-25 21:34 <a href="http://www.blogjava.net/sealyu/archive/2009/09/25/296469.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>300+Jquery, CSS, MooTools 和 JS的导航菜单资源(转)</title><link>http://www.blogjava.net/sealyu/archive/2009/09/25/296468.html</link><dc:creator>seal</dc:creator><author>seal</author><pubDate>Fri, 25 Sep 2009 13:33:00 GMT</pubDate><guid>http://www.blogjava.net/sealyu/archive/2009/09/25/296468.html</guid><wfw:comment>http://www.blogjava.net/sealyu/comments/296468.html</wfw:comment><comments>http://www.blogjava.net/sealyu/archive/2009/09/25/296468.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/sealyu/comments/commentRss/296468.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/sealyu/services/trackbacks/296468.html</trackback:ping><description><![CDATA[<p>　　如果你是网站前端开发人员，那么对你来说，也许做一个漂亮导航菜单会很得心应手。但今天<a href="http://blog.bingo929.com/about-squall-li">暴风彬彬</a>要为大家总结各种导航菜单的资源，以便让大家的网站前端开发的工作更方便更快速，只要选择现成的例子就可以应用于自己的网站了。<a href="http://blog.bingo929.com/about-squall-li">暴风彬彬</a>收集的这些资源，从非常简单的HTML和<a href="http://blog.bingo929.com/category/css">CSS</a>导航菜单，到非常复杂和高级的JQuery、JavaScript和MooTools技术，这都可以让你轻松实现褪色、滑动、拖动等效果。如果您觉得这些资源值得一用，那就快把本网页收藏以备日后查阅吧！</p>
<p>&nbsp;</p>
<p><br class="spacer_" />
</p>
<p>1.<a href="http://devthought.com/cssjavascript-true-power-fancy-menu/" target="_blank">Fancy menu</a>&nbsp;- 非常酷的导航菜单:</p>
<p><a href="http://devthought.com/cssjavascript-true-power-fancy-menu/"><img class="alignnone size-medium wp-image-849" title="orange-menu" src="http://blog.bingo929.com/wp-content/uploads/2008/09/orange-menu.jpg" alt="" height="91" width="475" /></a></p>
<p><br class="spacer_" />
</p>
<p>2. 专为Mac爱好者开发的<a href="http://www.ndesign-studio.com/blog/design/css-dock-menu/" target="_blank">CSS dock菜单</a>，使用jQuery框架。</p>
<p><a href="http://www.ndesign-studio.com/blog/design/css-dock-menu/"><img class="alignnone size-medium wp-image-850" title="css-dock-menu" src="http://blog.bingo929.com/wp-content/uploads/2008/09/css-dock-menu.jpg" alt="" height="120" width="500" /></a></p>
<p><a href="http://www.ndesign-studio.com/file/css-dock-menu.zip" target="_blank">下载 dock 菜单</a></p>
<p><br class="spacer_" />
</p>
<p>3.<a href="http://www.alvit.de/css-showcase/css-navigation-techniques-showcase.php" target="_blank">37个不同的CSS导航菜单技术</a>：</p>
<p><a href="http://www.alvit.de/css-showcase/css-navigation-techniques-showcase.php"><img class="alignnone size-medium wp-image-851" title="37个CSS导航菜单" src="http://blog.bingo929.com/wp-content/uploads/2008/09/navigation-6.jpg" alt="" height="227" width="500" /></a></p>
<p><br class="spacer_" />
</p>
<p>4.<a href="http://superfluousbanter.org/archives/2003/12/the-art-of-navigation/" target="_blank">这个导航</a>五年前就有了，但现在看来依然很棒！</p>
<p><a href="http://superfluousbanter.org/archives/2003/12/the-art-of-navigation/"><img class="alignnone size-medium wp-image-853" title="导航菜单资源" src="http://blog.bingo929.com/wp-content/uploads/2008/09/nav-7.jpg" alt="" height="75" width="443" /></a></p>
<p><br class="spacer_" />
</p>
<p>5.漂亮的<a href="http://dev.portalzine.de/index?/Horizontal_Accordion--print" target="_blank">JQuery滑动效果菜单</a>，有四种不同的例子。</p>
<p><a href="http://dev.portalzine.de/index?/Horizontal_Accordion--print"><img class="alignnone size-medium wp-image-854" title="jquery滑动菜单" src="http://blog.bingo929.com/wp-content/uploads/2008/09/jquery-nav.jpg" alt="" height="340" width="483" /></a></p>
<p><br class="spacer_" />
</p>
<p>6.更新<a href="http://blog.cutterscrossing.com/index.cfm/2007/6/15/Updated-JQuery-Nested-Tab-Set-with-Demo" target="_blank">jquery嵌套标签</a>设置,有演示;</p>
<p><a href="http://blog.cutterscrossing.com/index.cfm/2007/6/15/Updated-JQuery-Nested-Tab-Set-with-Demo"><img class="alignnone size-medium wp-image-855" title="jquery嵌套标签" src="http://blog.bingo929.com/wp-content/uploads/2008/09/115.jpg" alt="" height="215" width="456" /></a></p>
<p><br class="spacer_" />
</p>
<p>7.<a href="http://www.leigeber.com/2008/05/vertical-flyout-javascript-menu/" target="_blank">垂直JavaScript菜单</a>,含子菜单效果。 <a href="http://sandbox.leigeber.com/flyout/flyout.html" target="_blank">查看演示</a></p>
<p><a href="http://www.leigeber.com/2008/05/vertical-flyout-javascript-menu/"><img class="alignnone size-medium wp-image-856" title="flyout-menu" src="http://blog.bingo929.com/wp-content/uploads/2008/09/flyout.jpg" alt="" height="200" width="459" /></a></p>
<p><br class="spacer_" />
</p>
<p>8.13个精选纵向及横向<a href="http://developerfox.com/13-hand-picked-vertical-and-horizontal-css-menus/274" target="_blank">CSS菜单</a></p>
<p><a href="http://developerfox.com/13-hand-picked-vertical-and-horizontal-css-menus/274"><img class="alignnone size-medium wp-image-857" title="css菜单" src="http://blog.bingo929.com/wp-content/uploads/2008/09/14-thumb.jpg" alt="" height="289" width="318" /></a></p>
<p><br class="spacer_" />
</p>
<p>9.<a href="http://www.projectseven.com/tutorials/index.htm" target="_blank">各种不同的CSS菜单教程</a></p>
<p><br class="spacer_" />
</p>
<p>10.很全的收集CSS纵向菜单的网站：<a href="http://www.dynamicdrive.com/style/csslibrary/category/C2/" target="_blank">dynamicdrive.com</a></p>
<p><br class="spacer_" />
</p>
<p>11.<a href="http://www.cssplay.co.uk/menus/" target="_blank">CSSplay.com</a>，一个非常全面的收集各种CSS菜单的网站，而且经常有更新，推荐！</p>
<p><a href="http://www.cssplay.co.uk/menus/"><img class="alignnone size-medium wp-image-858" title="cssplay" src="http://blog.bingo929.com/wp-content/uploads/2008/09/cssplay.jpg" alt="" height="69" width="480" /></a></p>
<p><br class="spacer_" />
</p>
<p>12.<a href="http://woork.blogspot.com/2008/03/two-css-vertical-menu-with-showhide.html" target="_blank">有显示/隐藏效果的菜单</a>&nbsp;- 有 CSS 和 MooTools两种;</p>
<p><a href="http://woork.blogspot.com/2008/03/two-css-vertical-menu-with-showhide.html"><img class="alignnone size-medium wp-image-859" title="显示-隐藏-菜单" src="http://blog.bingo929.com/wp-content/uploads/2008/09/moomenu.png" alt="" height="220" width="420" /></a></p>
<p><br class="spacer_" />
</p>
<p>13.<a href="http://users.tpg.com.au/j_birch/plugins/superfish/#a" target="_blank">Superfish v1.4.8 &#8211; jQuery 菜单插件</a></p>
<p><br class="spacer_" />
</p>
<p>14.<a href="http://www.simplebits.com/bits/tab_rollovers.html" target="_blank">方便的图片标签翻转菜单</a>;</p>
<p><a href="http://blog.bingo929.com/wp-content/uploads/2008/09/116.jpg"><img class="alignnone size-medium wp-image-860" title="image-tab" src="http://blog.bingo929.com/wp-content/uploads/2008/09/116.jpg" alt="" height="35" width="488" /></a></p>
<p><br class="spacer_" />
</p>
<p>15.模仿Digg.com风格的<a href="http://woork.blogspot.com/2008/01/simple-css-vertical-menu-digg-like.html" target="_blank">CSS纵向菜单</a></p>
<p><a href="http://woork.blogspot.com/2008/01/simple-css-vertical-menu-digg-like.html"><img class="alignnone size-medium wp-image-862" title="digg-风格-css-菜单" src="http://blog.bingo929.com/wp-content/uploads/2008/09/212.jpg" alt="" height="132" width="399" /></a></p>
<p><br class="spacer_" />
</p>
<p>16.<a href="http://www.dezinerfolio.com/2007/07/19/simple-javascript-accordions/" target="_blank">JavaScript可折叠菜单</a>，<a href="http://www.dezinerfolio.com/wp-content/uploads/accordemo/01.html" target="_blank">查看演示</a></p>
<p><a href="http://www.dezinerfolio.com/2007/07/19/simple-javascript-accordions/"><img class="alignnone size-medium wp-image-863" title="JS-折叠-菜单" src="http://blog.bingo929.com/wp-content/uploads/2008/09/simpleaccordions.jpg" alt="" height="236" width="381" /></a></p>
<p><br class="spacer_" />
</p>
<p>17.独特的使用jQuery和MooTools的<a href="http://nettuts.com/html-css-techniques/how-to-create-a-mootools-homepage-inspired-navigation-effect-using-jquery/" target="_blank">导航菜单</a>; &nbsp; <a href="http://nettuts.s3.amazonaws.com/004_Moo/tutorial/demo/demo.html" target="_blank">查看演示</a></p>
<p><a href="http://nettuts.com/html-css-techniques/how-to-create-a-mootools-homepage-inspired-navigation-effect-using-jquery/"><img class="alignnone size-medium wp-image-865" title="nav-jquery" src="http://blog.bingo929.com/wp-content/uploads/2008/09/nav-jquery.jpg" alt="" height="246" width="248" /></a></p>
<p><br class="spacer_" />
</p>
<p>18.<a href="http://www.cssmenumaker.com/" target="_blank">CSSmenumaker.com</a>&nbsp;- 提供专业的CSS菜单;</p>
<p><br class="spacer_" />
</p>
<p><br class="spacer_" />
</p>
<p>19.&nbsp;非常酷的<a href="http://javascriptkit.com/script/cutindex23.shtml" target="_blank">&nbsp;JavaScript 菜单</a>&nbsp;，摘自&nbsp;JavaScriptkit.com;</p>
<p><br class="spacer_" />
</p>
<p>20.&nbsp;使用CSS创建的<a href="http://www.kriesi.at/archives/create-a-multilevel-dropdown-menu-with-css-and-improve-it-via-jquery" target="_blank">多级下拉菜单</a>并用JQuery进行了改善。<a href="http://www.kriesi.at/wp-content/extra_data/suckerfish_tutorial/step4.html" target="_blank">查看演示</a></p>
<p><a href="http://www.kriesi.at/archives/create-a-multilevel-dropdown-menu-with-css-and-improve-it-via-jquery"><img class="alignnone size-medium wp-image-866" title="多级下拉菜单" src="http://blog.bingo929.com/wp-content/uploads/2008/09/31.jpg" alt="" height="93" width="472" /></a></p>
<p><br class="spacer_" />
</p>
<p>21.&nbsp;<a href="http://jdsharp.us/jQuery/plugins/jdMenu/" target="_blank">jdMenu 多层次菜单插件 ， jQuery框架</a>&nbsp;- 纵向多级下拉菜单列表</p>
<p><br class="spacer_" />
</p>
<p>22.&nbsp;<a href="http://www.kriesi.at/archives/apple-menu-improved-with-jquery" target="_blank">难以置信的Apple风格导航菜单</a>:</p>
<p><a href="http://jdsharp.us/jQuery/plugins/jdMenu/"><img class="alignnone size-medium wp-image-867" title="apple-nav" src="http://blog.bingo929.com/wp-content/uploads/2008/09/apple-nav-500x61.jpg" alt="" height="61" width="500" /></a></p>
<p><br class="spacer_" />
</p>
<p>23.<a href="http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html" target="_blank">折叠风格JQuery菜单</a></p>
<p><a href="http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html"><img class="alignnone size-medium wp-image-868" title="accordion-menu" src="http://blog.bingo929.com/wp-content/uploads/2008/09/accordion-menu.jpg" alt="" height="155" width="338" /></a></p>
<p><br class="spacer_" />
</p>
<p>24.&nbsp;<a href="http://nettuts.com/javascript-ajax/create-a-cool-animated-navigation-with-css-and-jquery/" target="_blank">非常酷的使用CSS和 jQuery制作的动画导航菜单</a>:</p>
<p><a href="http://nettuts.com/javascript-ajax/create-a-cool-animated-navigation-with-css-and-jquery/"><img class="alignnone size-medium wp-image-869" title="动画导航" src="http://blog.bingo929.com/wp-content/uploads/2008/09/nav-8-500x90.jpg" alt="" height="90" width="500" /></a></p>
<p><br class="spacer_" />
</p>
<p>25.&nbsp;<a href="http://jquery.bassistance.de/treeview/demo/" target="_blank">jQuery树插件</a></p>
<p><a href="http://jquery.bassistance.de/treeview/demo/"><img class="alignnone size-medium wp-image-870" title="树" src="http://blog.bingo929.com/wp-content/uploads/2008/09/treeview.jpg" alt="" height="250" width="244" /></a></p>
<p><br class="spacer_" />
</p>
<p>26.&nbsp;<a href="http://interface.eyecon.ro/demos/?page=demos" target="_blank">35种独特的JQuery菜单演示</a></p>
<p><br class="spacer_" />
</p>
<p>27.<a href="http://www.webappers.com/2007/09/05/smooth-and-clean-fastfind-menu-jquery-plugin/" target="_blank">Jquery 快速导航</a>&nbsp;- 点击 toogle 菜单, 以弹出导航菜单:</p>
<p><img class="alignnone size-medium wp-image-871" title="quick-navi" src="http://blog.bingo929.com/wp-content/uploads/2008/09/quick-navi.jpg" alt="" height="338" width="247" /></p>
<p><br class="spacer_" />
</p>
<p>28.&nbsp;<a href="http://www.sunsean.com/idTabs/" target="_blank">jQuery id标签</a>&nbsp;- 8种不同的很酷的JQuery菜单例子</p>
<p><a href="http://www.sunsean.com/idTabs/"><img class="alignnone size-medium wp-image-872" title="jquery-cool" src="http://blog.bingo929.com/wp-content/uploads/2008/09/jquery-cool.jpg" alt="" height="381" width="500" /></a></p>
<p><br class="spacer_" />
</p>
<p>29.&nbsp;<a href="http://www.trendskitchens.co.nz/jquery/contextmenu/" target="_blank">jQuery ContextMenu</a>；轻量级JQuery插件，可以自定义右键弹出的菜单</p>
<p><a href="http://blog.bingo929.com/wp-content/uploads/2008/09/contextmenu.jpg"><img class="alignnone size-medium wp-image-873" title="contextmenu" src="http://blog.bingo929.com/wp-content/uploads/2008/09/contextmenu.jpg" alt="" height="159" width="169" /></a></p>
<p><br class="spacer_" />
</p>
<p>30.&nbsp;<a href="http://stilbuero.de/jquery/tabs_3/" target="_blank">jQuery UI tabs</a>&nbsp;- 可以自定义不同效果的标签菜单，比如：幻灯片效果、淡出效果等&#8230;<a href="http://stilbuero.de/jquery/tabs_3/" target="_blank">查看演示</a></p>
<p><br class="spacer_" />
</p>
<p>31.&nbsp;<a href="http://icon.cat/wiki/IconDock_En#iconDock_jQuery_Plugin" target="_blank">iconDock jQuery</a>&nbsp;- 有一个模仿 MAC OS X dock效果的菜单;</p>
<p><a href="http://icon.cat/wiki/IconDock_En#iconDock_jQuery_Plugin"><img class="alignnone size-medium wp-image-874" title="dockexample" src="http://blog.bingo929.com/wp-content/uploads/2008/09/dockexample.png" alt="" height="79" width="295" /></a></p>
<p><br class="spacer_" />
</p>
<p>32.<a href="http://www.getintothis.com/blog/2006/09/26/my-first-jquery-plugin-a-sliding-menu/" target="_blank">SlidingMenu</a>&nbsp;-&nbsp;很简单的滑动菜单效果</p>
<p><br class="spacer_" />
</p>
<p><br class="spacer_" />
</p>
<p>33. 标签导航</p>
<p>11个使用了<a href="http://www.alistapart.com/articles/slidingdoors2/" target="_blank">滑动门</a>技术的菜单，并且兼容IE浏览器</p>
<p><a href="http://www.alistapart.com/articles/slidingdoors2/"><img class="alignnone size-medium wp-image-875" title="navigation-1" src="http://blog.bingo929.com/wp-content/uploads/2008/09/navigation-1-500x522.jpg" alt="" height="522" width="500" /></a></p>
<p><a href="http://exploding-boy.com/mint/pepper/tillkruess/downloads/download.php?uri=http%3A//exploding-boy.com/images/CSSmenus.zip">下载这些菜单</a></p>
<p><br class="spacer_" />
</p>
<p>34.另一种<a href="http://tutorials.mezane.org/tabbed-navigation-using-css/" target="_blank">CSS标签导航菜单</a></p>
<p><a href="http://blog.bingo929.com/wp-content/uploads/2008/09/tabbed-navigation.jpg"><img class="alignnone size-medium wp-image-876" title="tabbed-navigation" src="http://blog.bingo929.com/wp-content/uploads/2008/09/tabbed-navigation-499x175.jpg" alt="" height="175" width="499" /></a></p>
<p><br class="spacer_" />
</p>
<p>35.9种不同的<a href="http://e-lusion.com/design/menu/" target="_blank">CSS块级菜单</a></p>
<p><a href="http://e-lusion.com/design/menu/"><img class="alignnone size-medium wp-image-877" title="block-navigation" src="http://blog.bingo929.com/wp-content/uploads/2008/09/block-navigation-499x414.jpg" alt="" height="414" width="499" /></a></p>
<p><a href="http://e-lusion.com/design/menu/full.zip">直接下载这些菜单</a></p>
<p><br class="spacer_" />
</p>
<p>36.12种以上不同的<a href="http://www.ex-designz.net/template/tempcat.asp?cat_id=14" target="_blank">CSS菜单</a></p>
<p><a href="http://www.ex-designz.net/template/tempcat.asp?cat_id=14"><img class="alignnone size-medium wp-image-878" title="navigation-2" src="http://blog.bingo929.com/wp-content/uploads/2008/09/navigation-2-499x372.jpg" alt="" height="372" width="499" /></a></p>
<p><br class="spacer_" />
</p>
<p>37.&nbsp;<a href="http://aplus.rs/adxmenu/" target="_blank">ADxMenu</a>-4种非常酷的导航菜单</p>
<p><a href="http://aplus.rs/adxmenu/"><img class="alignnone size-medium wp-image-879" title="navigation-3" src="http://blog.bingo929.com/wp-content/uploads/2008/09/navigation-3-499x181.jpg" alt="" height="181" width="499" /></a></p>
<p><a href="http://aplus.rs/adxmenu/adxmenu-v4.zip" target="_blank">下载</a></p>
<p><br class="spacer_" />
</p>
<p>38.在<a href="http://www.cssmenubuilder.com/menus" target="_blank">CSSmenubuilde</a>你可以自己选择喜欢的菜单风格，这个网站有一个庞大的菜单列表供你选择</p>
<p><a href="http://www.cssmenubuilder.com/menus"><img class="alignnone size-medium wp-image-880" title="丰富的菜单" src="http://blog.bingo929.com/wp-content/uploads/2008/09/4-500x406.jpg" alt="" height="406" width="500" /></a></p>
<p><br class="spacer_" />
</p>
<p>40. 很多不同的<a href="http://css.maxdesign.com.au/listamatic2/index.htm" target="_blank">菜单</a>风格</p>
<p><a href="http://css.maxdesign.com.au/listamatic/index.htm"><img class="alignnone size-medium wp-image-881" title="listamatic" src="http://blog.bingo929.com/wp-content/uploads/2008/09/listamatic-499x104.jpg" alt="" height="104" width="499" /></a></p>
<p><a href="http://css.maxdesign.com.au/listamatic2/index.htm"><img class="alignnone size-medium wp-image-882" title="listamatic2" src="http://blog.bingo929.com/wp-content/uploads/2008/09/listamatic2-499x98.jpg" alt="" height="98" width="499" /></a></p>
<p><br class="spacer_" />
</p>
<p>41.CSS菜单，纵向、横向都有</p>
<p><a href="http://qrayg.com/learn/code/cssmenus/"><img class="alignnone size-medium wp-image-883" title="css-menu-vertical" src="http://blog.bingo929.com/wp-content/uploads/2008/09/css-menu-vertical-499x213.jpg" alt="" height="213" width="499" /></a></p>
<p><br class="spacer_" />
</p>
<p>42.非常棒的<a href="http://stickmanlabs.com/accordion/" target="_blank">导航菜单</a>，其中有一种是非常有人气的折叠菜单；</p>
<p><a href="http://stickmanlabs.com/accordion/"><img class="alignnone size-medium wp-image-884" title="accordion" src="http://blog.bingo929.com/wp-content/uploads/2008/09/accordion-499x316.jpg" alt="" height="316" width="499" /></a></p>
<p><a href="http://stickmanlabs.com/accordion/accordion.zip">下载这个折叠菜单</a></p>
<p><br class="spacer_" />
</p>
<p><a href="http://www.listulike.com/generator/" target="_blank">list-u-like</a>:制作你自己喜欢的CSS列表</p>
<p><a href="http://www.webmaster-toolkit.com/css-menu-generator.shtml" target="_blank">CSS Menu&nbsp;</a><strong><a href="http://www.webmaster-toolkit.com/css-menu-generator.shtml" target="_blank">Generator</a>:</strong>这个CSS菜单生成器可以允许你制作3中不同风格的菜单。</p>
<p><strong><span>您还可以参考以下前端开发相关教程&amp;资源:</span></strong><br />
《<a title="精选15个国外CSS框架" href="http://blog.bingo929.com/css-frameworks-15.html">精选15个国外CSS框架</a>》<br />
《<a title="Permanent Link to 10个非常棒的Ajax及Javascript实例资源网站" href="http://blog.bingo929.com/10-sources-ajax-javascript.html">10个非常棒的Ajax及Javascript实例资源网站</a>》<br />
《<a title="12种Javascript解决常见浏览器兼容问题的方法" href="http://blog.bingo929.com/12-javascript-browser-css-wrong.html">12种Javascript解决常见浏览器兼容问题的方法</a>》<br />
《<a title="精选30个优秀的CSS技术和实例" href="http://blog.bingo929.com/30-css-tec-examples.html">精选30个优秀的CSS技术和实例</a>》<br />
《<a href="http://blog.bingo929.com/15-bookmarklets.html">15个前端开发/网页设计师必备的Bookmarklet</a>》&nbsp;</p>
<p>英文原文:<a title="300+ Jquery, CSS, MooTools and JS navigation menus" href="http://www.1stwebdesigner.com/resources/300-jquery-css-mootools-and-js-navigation-menus/">300+ Jquery, CSS, MooTools and JS navigation menus&nbsp;</a><br />
翻译原文:<a href="http://blog.bingo929.com/300-jquery-css-mootools-js-navigation-menus.html">300+Jquery, CSS, MooTools 和 JS的导航菜单资源</a></p>
<blockquote>
<p><span style="color: rgb(255, 0, 0);"><strong>转载声明：</strong></span></p>
<p>请在转载本文时, 在文章底部加入本站或本文链接, 以声明文章来源, 谢谢合作</p>
<p>本站链接:http://blog.bingo929.com</p>
<p>本文链接:http://blog.bingo929.com/300-jquery-css-mootools-js-navigation-menus.html</p>
</blockquote>
<img src ="http://www.blogjava.net/sealyu/aggbug/296468.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/sealyu/" target="_blank">seal</a> 2009-09-25 21:33 <a href="http://www.blogjava.net/sealyu/archive/2009/09/25/296468.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>