<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>米老虎的BLOG</title>
	<atom:link href="http://www.solar1979.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.solar1979.com</link>
	<description>在明媚的间隙，涌动生长；在妖娆的未知，得偿所愿。</description>
	<lastBuildDate>Sun, 31 Jan 2010 12:53:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>雷人无极限 如果你用iPad打电话</title>
		<link>http://www.solar1979.com/humor/319.html</link>
		<comments>http://www.solar1979.com/humor/319.html#comments</comments>
		<pubDate>Sun, 31 Jan 2010 12:53:38 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[Black Humor]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[囧]]></category>
		<category><![CDATA[苹果]]></category>
		<category><![CDATA[雷]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/humor/319.html</guid>
		<description><![CDATA[苹果已于北京时间1月28日凌晨公布了其平板电脑——iPad，iPad目前有支持WiFi和支持WiFi+3G两个版本，不过支持3G的iPad只能用来上网，并不能像iPhone那样打电话。而就在iPad发布不久之后，国外就出现了一段恶搞iPad的雷人视频，或许看完这段视频之后我们就会明白为什么乔布斯不给iPad加入通话功能了……

]]></description>
			<content:encoded><![CDATA[<p>苹果已于北京时间1月28日凌晨公布了其平板电脑——iPad，iPad目前有支持WiFi和支持WiFi+3G两个版本，不过支持3G的iPad只能用来上网，并不能像iPhone那样打电话。而就在iPad发布不久之后，国外就出现了一段恶搞iPad的雷人视频，或许看完这段视频之后我们就会明白为什么乔布斯不给iPad加入通话功能了……</p>
<p><embed src="http://player.youku.com/player.php/sid/XMTQ4OTQ3MDIw/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed></p>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=319&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/humor/319.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>清除浮动新说</title>
		<link>http://www.solar1979.com/tech/316.html</link>
		<comments>http://www.solar1979.com/tech/316.html#comments</comments>
		<pubDate>Fri, 25 Dec 2009 08:47:56 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Float]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[浮动]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/tech/316.html</guid>
		<description><![CDATA[起源：

.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: &#34; &#34;;
clear: both;
height: 0;
}
.clearfix { display: inline-table; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */

说明：

*对大多数符合标准的浏览器应用第一个声明块，目的是创建一个隐形的内容为空的块来为目标元素清除浮动。 
*第二条为clearfix应用 inline-table 显示属性，仅仅针对IE/Mac。*利用 * / 对 IE/Mac 隐藏一些规则： 
* height:1% 用来触发 IE6 下的haslayout。 
*重新对 IE/Mac 外的IE应用 block 显示属性。 
*最后一行用于结束针对 IE/Mac 的hack。 

由于此方法针对的浏览器或成为历史（尤其是Mac下的IE5 ），或正在靠近标准的路上，这个方法就不再那么与时俱进了。

抛掉对 [...]]]></description>
			<content:encoded><![CDATA[<h3>起源：</h3>
<pre class="brush: css;">
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: &quot; &quot;;
clear: both;
height: 0;
}
.clearfix { display: inline-table; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */
</pre>
<h3>说明：</h3>
<ul>
<li>*对大多数符合标准的浏览器应用第一个声明块，目的是创建一个隐形的内容为空的块来为目标元素清除浮动。 </li>
<li>*第二条为clearfix应用 inline-table 显示属性，仅仅针对IE/Mac。*利用 * / 对 IE/Mac 隐藏一些规则： </li>
<li>* height:1% 用来触发 IE6 下的haslayout。 </li>
<li>*重新对 IE/Mac 外的IE应用 block 显示属性。 </li>
<li>*最后一行用于结束针对 IE/Mac 的hack。 </li>
</ul>
<p>由于此方法针对的浏览器或成为历史（尤其是Mac下的IE5 ），或正在靠近标准的路上，这个方法就不再那么与时俱进了。</p>
<p><span id="more-316"></span></p>
<p>抛掉对 IE/Mac 的支持之后，新的清除浮动方法：</p>
<pre class="brush: css;">
/* new clearfix */
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: &quot; &quot;;
clear: both;
height: 0;
}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
</pre>
<h3>说明：</h3>
<p>IE6 和 IE7 都不支持 :after 这个伪类，因此需要后面两条来触发IE6/7的haslayout，以清除浮动。幸运的是IE8支持 :after 伪类。因此只需要针对IE6/7的hack了。</p>
<p>这里有一个演示页面：<a class="external" href="http://aloestudios.com/misc/overflow/" target="_blank">Demo</a>（By Andy Ford）</p>
<p>摘自：<a class="external" href="http://www.qianduan.net/new-clearfix.html" target="_blank">前端观察</a></p>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=316&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/tech/316.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JAYWALK &lt;ＡＳＩＡ～エイジア～&gt;下载</title>
		<link>http://www.solar1979.com/music/314.html</link>
		<comments>http://www.solar1979.com/music/314.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 09:29:58 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[下载]]></category>
		<category><![CDATA[音乐]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/music/314.html</guid>
		<description><![CDATA[专辑介绍：

JAYWALK 走访亚洲各国家之后，成员之一的贝斯手中内认真的学习中文，他们慢慢地发现，与其说自己是个「日本人」，还不如说是个「亚洲人」更来得贴切。新专辑的构想是在去年产生的，台湾的唱片公司建议，唱的歌曲不妨是能够让华人琅琅上口的旋律，因此就以 JAYWALK 所感受到的亚洲来作一张专辑，於是促成新作「ASIA～风迷亚洲～」的诞生。专辑中特别翻唱王菲的「我愿意」、张惠妹的「原来你什么都不要」、林晓培的「心动」，张雨生的旧作「大海」、姜育恒「再回首」等歌曲。JAYWALK即&#8220;JAYBIRD WALK IN THE HEAVEN。JAYWALK由主唱中村根一、吉他知久光康、BASE中内助六、键盘杉田裕、鼓手田切纯一、打击乐手清水达也6人组成，是一标准的乐队。他们1980年组队，1981年6月1日推出首支单曲&#8212;&#8212;《Just Because》。主唱中村根一也没有出人的歌喉，歌曲也没有激烈的节奏，但有一点是其他所有的乐队、演唱组都比不上的是&#8220;和声&#8221;这也是JAYWALK受欢迎的地方，6人不分主次人人都能当主唱，6人的歌声和在一起时那种共鸣声是最美妙的，令人想起了教堂的唱诗班的歌声仿佛是从天堂传来的。

专辑曲目:

01. Once upon a time Asia
02. 大海 ～DA HAI～
03. いかないで ～我愿意～
04. 再回首 ～ZAI HUI SOU～
05. 父さんと母さんのメロディ
06. 太阳と俺
07. どんなに时が流れたあとも (New Version)
08. 绊
09. あなたのそばに ～原来･什么都不要～
10. REASON -小さな君へ- (New Version)
11. 思い出すはずなのに ～心动～
12. 君

《大海》MV

下载地址（三个压缩包，要全部下载哦）：

http://www.box.net/shared/xahepv7afq
http://www.box.net/shared/uccpkqjjxn
http://www.box.net/shared/fzzuz70taj

Jaywalk介绍
文字来源：VeryCD
]]></description>
			<content:encoded><![CDATA[<h3>专辑介绍：</h3>
<p><img width="" height="" src="http://www.fukuonobo.com/linkgif/jaywalk.jpg" alt="jaywalk" /></p>
<p>JAYWALK 走访亚洲各国家之后，成员之一的贝斯手中内认真的学习中文，他们慢慢地发现，与其说自己是个「日本人」，还不如说是个「亚洲人」更来得贴切。新专辑的构想是在去年产生的，台湾的唱片公司建议，唱的歌曲不妨是能够让华人琅琅上口的旋律，因此就以 JAYWALK 所感受到的亚洲来作一张专辑，於是促成新作「ASIA～风迷亚洲～」的诞生。专辑中特别翻唱王菲的「我愿意」、张惠妹的「原来你什么都不要」、林晓培的「心动」，张雨生的旧作「大海」、姜育恒「再回首」等歌曲。JAYWALK即&ldquo;JAYBIRD WALK IN THE HEAVEN。JAYWALK由主唱中村根一、吉他知久光康、BASE中内助六、键盘杉田裕、鼓手田切纯一、打击乐手清水达也6人组成，是一标准的乐队。他们1980年组队，1981年6月1日推出首支单曲&mdash;&mdash;《Just Because》。主唱中村根一也没有出人的歌喉，歌曲也没有激烈的节奏，但有一点是其他所有的乐队、演唱组都比不上的是&ldquo;和声&rdquo;这也是JAYWALK受欢迎的地方，6人不分主次人人都能当主唱，6人的歌声和在一起时那种共鸣声是最美妙的，令人想起了教堂的唱诗班的歌声仿佛是从天堂传来的。</p>
<p><span id="more-314"></span></p>
<h3>专辑曲目:</h3>
<ul>
<li>01. Once upon a time Asia</li>
<li>02. 大海 ～DA HAI～</li>
<li>03. いかないで ～我愿意～</li>
<li>04. 再回首 ～ZAI HUI SOU～</li>
<li>05. 父さんと母さんのメロディ</li>
<li>06. 太阳と俺</li>
<li>07. どんなに时が流れたあとも (New Version)</li>
<li>08. 绊</li>
<li>09. あなたのそばに ～原来･什么都不要～</li>
<li>10. REASON -小さな君へ- (New Version)</li>
<li>11. 思い出すはずなのに ～心动～</li>
<li>12. 君</li>
</ul>
<h3>《大海》MV</h3>
<p><object width="420" height="363"><param value="http://www.tudou.com/v/dtwhWpByqN4" name="movie" /><param value="true" name="allowFullScreen" /><param value="always" name="allowscriptaccess" /><param value="opaque" name="wmode" /><embed width="420" height="363" wmode="opaque" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" src="http://www.tudou.com/v/dtwhWpByqN4"></embed></object></p>
<h3>下载地址（三个压缩包，要全部下载哦）：</h3>
<ul>
<li><a href="http://www.box.net/shared/xahepv7afq">http://www.box.net/shared/xahepv7afq</a></li>
<li><a href="http://www.box.net/shared/uccpkqjjxn">http://www.box.net/shared/uccpkqjjxn</a></li>
<li><a href="http://www.box.net/shared/fzzuz70taj">http://www.box.net/shared/fzzuz70taj</a></li>
</ul>
<p><a class="external" href="http://baike.baidu.com/view/1347898.htm" target="_blank">Jaywalk介绍</a></p>
<p>文字来源：<a class="external" href="http://www.verycd.com/topics/220607/" target="_blank">VeryCD</a></p>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=314&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/music/314.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>这是 Windows Live Writer 测试</title>
		<link>http://www.solar1979.com/notepad/312.html</link>
		<comments>http://www.solar1979.com/notepad/312.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 04:54:14 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[NotePad]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/download/312.html</guid>
		<description><![CDATA[这是来自 Windows Live Writer 的测试文章！
]]></description>
			<content:encoded><![CDATA[<p>这是来自 Windows Live Writer 的测试文章！</p>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=312&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/notepad/312.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SyntaxHighlighter 插件测试</title>
		<link>http://www.solar1979.com/notepad/310.html</link>
		<comments>http://www.solar1979.com/notepad/310.html#comments</comments>
		<pubDate>Wed, 09 Dec 2009 08:04:28 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[NotePad]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/notepad/310.html</guid>
		<description><![CDATA[PHP

&#60;?php
  date_default_timezone_set('UTC');
  phpinfo();
?&#62;

Javascript

var t = new Date();
window.alert(t);

CSS

@charset &#34;utf-8&#34;;
/* CSS Document */

html, body {
   background: #fff;
   color: #000;
}

html, body, h2, h3, h4, div, p, ul, li, input {
   font-family: Arial, Helvetica, sans-serif;
}

C#

using System;

public class Class1
{
	public Class1()
	{
	}
}

语法说明



 Brush name

 Brush aliases

 File name



ActionScript3

 as3, actionscript3

 shBrushAS3.js



Bash/shell

 bash, shell

 shBrushBash.js



C#

 [...]]]></description>
			<content:encoded><![CDATA[<h3>PHP</h3>
<pre class="brush: php;">
&lt;?php
  date_default_timezone_set('UTC');
  phpinfo();
?&gt;
</pre>
<h3>Javascript</h3>
<pre class="brush: jscript;">
var t = new Date();
window.alert(t);
</pre>
<h3>CSS</h3>
<pre class="brush: css;">
@charset &quot;utf-8&quot;;
/* CSS Document */

html, body {
   background: #fff;
   color: #000;
}

html, body, h2, h3, h4, div, p, ul, li, input {
   font-family: Arial, Helvetica, sans-serif;
}
</pre>
<h3>C#</h3>
<pre class="brush: csharp;">
using System;

public class Class1
{
	public Class1()
	{
	}
}
</pre>
<h3>语法说明</h3>
<table width="100%" cellspacing="0" cellpadding="4" border="0">
<tbody>
<tr>
<th align="left"> Brush name
</th>
<th align="left"> Brush aliases
</th>
<th align="left"> File name
</th>
</tr>
<tr>
<td>ActionScript3
</td>
<td> as3, actionscript3
</td>
<td> shBrushAS3.js
</td>
</tr>
<tr>
<td>Bash/shell
</td>
<td> bash, shell
</td>
<td> shBrushBash.js
</td>
</tr>
<tr>
<td>C#
</td>
<td> c-sharp, csharp
</td>
<td> shBrushCSharp.js
</td>
</tr>
<tr>
<td>C++
</td>
<td> cpp, c
</td>
<td> shBrushCpp.js
</td>
</tr>
<tr>
<td>CSS
</td>
<td> css
</td>
<td> shBrushCss.js
</td>
</tr>
<tr>
<td>Delphi
</td>
<td> delphi, pas, pascal
</td>
<td> shBrushDelphi.js
</td>
</tr>
<tr>
<td>Diff
</td>
<td> diff, patch
</td>
<td> shBrushDiff.js
</td>
</tr>
<tr>
<td>Groovy
</td>
<td> groovy
</td>
<td> shBrushGroovy.js
</td>
</tr>
<tr>
<td>JavaScript
</td>
<td> js, jscript, javascript
</td>
<td> shBrushJScript.js
</td>
</tr>
<tr>
<td>Java
</td>
<td> java
</td>
<td> shBrushJava.js
</td>
</tr>
<tr>
<td>JavaFX
</td>
<td> jfx, javafx
</td>
<td> shBrushJavaFX.js
</td>
</tr>
<tr>
<td>Perl
</td>
<td> perl, pl
</td>
<td> shBrushPerl.js
</td>
</tr>
<tr>
<td>PHP
</td>
<td> php
</td>
<td> shBrushPhp.js
</td>
</tr>
<tr>
<td>Plain Text
</td>
<td> plain, text
</td>
<td> shBrushPlain.js
</td>
</tr>
<tr>
<td>PowerShell
</td>
<td> ps, powershell
</td>
<td> shBrushPowerShell.js
</td>
</tr>
<tr>
<td>Python
</td>
<td> py, python
</td>
<td> shBrushPython.js
</td>
</tr>
<tr>
<td>Ruby
</td>
<td> rails, ror, ruby
</td>
<td> shBrushRuby.js
</td>
</tr>
<tr>
<td>Scala
</td>
<td> scala
</td>
<td> shBrushScala.js
</td>
</tr>
<tr>
<td>SQL
</td>
<td> sql
</td>
<td> shBrushSql.js
</td>
</tr>
<tr>
<td>Visual Basic
</td>
<td> vb, vbnet
</td>
<td> shBrushVb.js
</td>
</tr>
<tr>
<td>XML
</td>
<td> xml, xhtml, xslt, html, xhtml
</td>
<td> shBrushXml.js
</td>
</tr>
</tbody>
</table>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=310&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/notepad/310.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>重新发现HTML表格</title>
		<link>http://www.solar1979.com/tech/309.html</link>
		<comments>http://www.solar1979.com/tech/309.html#comments</comments>
		<pubDate>Fri, 04 Dec 2009 04:33:11 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[表格]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/tech/309.html</guid>
		<description><![CDATA[根据我最近的一些实践以及在和一些读者进行关于HTML表格的使用问题沟通之后，决定写这篇文章。总的来说，我注意到由于误导性信息，他们对于table的使用有种先入为主的厌恶。事实上很多人会说”我看到永远不应该使用表格”的说法，但是这绝对是错误的！这个建议只是针对使用HTML表格来定义网页的布局，但是表格在方便的排列数据信息行和列方面非常完美，而且如果你一定要在一个页面上显示表列数据，你就不得不使用它们！为什么不呢？然而，在这种情况下，一些人无视了用于table的某些HTML标签的存在并且不知道该如何正确的使用它们。

HTML有10个表格相关标签。下面是一个带有简介的列表，但是首先，文档要被正确的定义在HTML 4.01/XHTML 1或HTML 5下面:

&#60;caption&#62; 定义表格标题(4, 5)
&#60;col&#62; 为表格的列定义属性(4, 5)
&#60;colgroup&#62; 定义表格列的分组(4, 5)
&#60;table&#62; 定义表格(4, 5)
&#60;tbody&#62; 定义表格主体(4, 5)
&#60;td&#62; 定义一个单元格 (4, 5)
&#60;tfoot&#62; 定义表格的表注(底部)(4, 5)
&#60;th&#62; 定义表格的表头 (4, 5)
&#60;thead&#62; 定义表格的表头(4, 5)
&#60;tr&#62; 定义表格的行(4, 5)

 一个基本的表格结构如下:

 它包含一个标题、头部、主体和底部。正确的HTML元素顺序是：

&#60;table&#62;
&#60;caption&#62;
&#60;thead&#62;
&#60;tfoot&#62;
&#60;tbody&#62;

你也可以使用&#60;col&#62; 和&#60;colgroup&#62; 来定义表格的列或为列分组：

&#60;table&#62;
&#60;caption&#62;
&#60;colgroup&#62;
&#60;col&#62;
&#60;thead&#62;
&#60;tfoot&#62;
&#60;tbody&#62;

下面是一个正确的表格结构实例：
&#60;table border=&#34;1&#34;&#62;
&#160; &#160; &#60;caption&#62;Table caption here&#60;/caption&#62;
&#160; &#160; &#60;colgroup&#160;span=&#34;1&#34; style=&#34;background:#DEDEDE;&#34;/&#62;
&#160; &#160; &#60;colgroup&#160;span=&#34;2&#34; style=&#34;background:#EFEFEF;&#34;/&#62;
&#160;
&#160; &#160; &#60;!-- Table Header--&#62;
&#160; &#160; &#60;thead&#62;
&#160; &#160; &#60;tr&#62;
&#160; &#160; &#160; &#160; &#60;th&#62;Head 1&#60;/th&#62;
&#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>根据我最近的一些实践以及在和一些读者进行关于HTML表格的使用问题沟通之后，决定写这篇文章。总的来说，我注意到由于误导性信息，他们对于table的使用有种先入为主的厌恶。事实上很多人会说”我看到永远不应该使用表格”的说法，但是这绝对是错误的！这个建议只是针对使用HTML表格来定义网页的布局，但是表格在方便的排列数据信息行和列方面非常完美，而且如果你一定要在一个页面上显示表列数据，你就不得不使用它们！为什么不呢？然而，在这种情况下，一些人无视了用于table的某些HTML标签的存在并且不知道该如何正确的使用它们。</p>
<p><span id="more-309"></span></p>
<p>HTML有10个表格相关标签。下面是一个带有简介的列表，但是首先，文档要被正确的定义在HTML 4.01/XHTML 1或HTML 5下面:</p>
<ul>
<li>&lt;caption&gt; 定义表格标题(4, 5)</li>
<li>&lt;col&gt; 为表格的列定义属性(4, 5)</li>
<li>&lt;colgroup&gt; 定义表格列的分组(4, 5)</li>
<li>&lt;table&gt; 定义表格(4, 5)</li>
<li>&lt;tbody&gt; 定义表格主体(4, 5)</li>
<li>&lt;td&gt; 定义一个单元格 (4, 5)</li>
<li>&lt;tfoot&gt; 定义表格的表注(底部)(4, 5)</li>
<li>&lt;th&gt; 定义表格的表头 (4, 5)</li>
<li>&lt;thead&gt; 定义表格的表头(4, 5)</li>
<li>&lt;tr&gt; 定义表格的行(4, 5)</li>
</ul>
<p> 一个基本的表格结构如下:</p>
<p><img alt="重新认识table" src="http://www.qianduan.net/wp-content/uploads/2009/11/table1.png"/></p>
<p> 它包含一个标题、头部、主体和底部。正确的HTML元素顺序是：</p>
<ol>
<li>&lt;table&gt;</li>
<li>&lt;caption&gt;</li>
<li>&lt;thead&gt;</li>
<li>&lt;tfoot&gt;</li>
<li>&lt;tbody&gt;</li>
</ol>
<p>你也可以使用<em>&lt;col&gt;</em> 和<em>&lt;colgroup&gt;</em> 来定义表格的列或为列分组：</p>
<ol>
<li>&lt;table&gt;</li>
<li>&lt;caption&gt;</li>
<li>&lt;colgroup&gt;</li>
<li>&lt;col&gt;</li>
<li>&lt;thead&gt;</li>
<li>&lt;tfoot&gt;</li>
<li>&lt;tbody&gt;</li>
</ol>
<p>下面是一个正确的表格结构实例：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Olive;">&lt;</span><span style="color: Green;">table</span><span style="color: Gray;"> </span><span style="color: #00008b;">border</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">1</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">caption</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Table caption here</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">caption</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">colgroup</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">span</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">1</span><span style="color: #8b0000;">&quot;</span><span style="color: Gray;"> </span><span style="color: #00008b;">style</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">background:#DEDEDE;</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">/&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">colgroup</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">span</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">2</span><span style="color: #8b0000;">&quot;</span><span style="color: Gray;"> </span><span style="color: #00008b;">style</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">background:#EFEFEF;</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">/&gt;</span></li>
<li><span style="color: Gray;">&nbsp;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: #ffa500;">&lt;!-- Table Header--&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">thead</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">tr</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">th</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Head 1</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">th</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">th</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Head 2</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">th</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">th</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Head 3</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">th</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">tr</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">thead</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: #ffa500;">&lt;!-- Table Footer--&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">tfoot</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">tr</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Foot 1</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Foot 2</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Foot 3</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">tr</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">tfoot</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: #ffa500;">&lt;!-- Table Body--&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">tbody</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">&nbsp;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">tr</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">A</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">B</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">C</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">tr</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">tr</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">D</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">E</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">F</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">td</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">tr</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">tbody</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Olive;">&lt;/</span><span style="color: Green;">table</span><span style="color: Olive;">&gt;</span></li></ol></div>
<p>在浏览器中的结果如下图所示:</p>
<p><img alt="重新认识table" src="http://www.qianduan.net/wp-content/uploads/2009/11/table2.png"/></p>
<h3>关于表格的一些技巧</h3>
<ul>
<li>根据w3schools的解释和用法，在一个table定义中，<strong>&lt;tfoot&gt;元素必须出现在&lt;tbody&gt;之前</strong>，这样，浏览器就可以在接受到所有数据之前呈现表注了。另外，如果不是这个顺序，将<strong>不能</strong>通过W3C的HTML4和XHTML验证，无论你声明哪种DTD。(<a class="external" href="http://www.w3school.com.cn/tags/tag_tfoot.asp" target="_blank">了解更多</a>)。</li>
<li>在 HTML 4.01 中,表格的<strong>align</strong>和<strong>bgcolor</strong>属性不赞成使用，所以在HTML 5中不再有任何table的属性被支持（事实上，在XHTML 1.0 Strict DTD中已经不支持”align”和”bgcolor”属性了）；</li>
<li>所有主流浏览器都支持&lt;colgroup&gt; 标签，但是Firefox、Chrome 以及 Safari 仅支持 colgroup 元素的 span 和 width 属性；</li>
<li>css中的empty-cells:show|hide 可以设定空单元格是否显示边框。注意，这个<strong>需要设置在table而不是td/th中</strong>。IE6中比较容易遇到该问题；</li>
<li>css中的border-collapse:collapse | separate 可以设置表格的边框是否被合并成一个边框；</li>
<li>css中的border-spacing属性等效于table的cellspacing属性。</li>
</ul>
<p>为了实现现在所提倡的表现和结构分离的开发模式，前端观察建议将页面中所有与表现层有关的东东，都用CSS来控制，不用HTML自带的属性来控制页面的表现，而table是最容易被忽略的一个。</p>
<p>关于table的更多详细内容可以查看W3C的文档： <a class="external" href="http://www.w3.org/TR/html4/struct/tables.html" target="_blank">w3 Introduction to tables</a></p>
<p>最后留一个非常简单的问题给大家，CSS的哪个属性等效于table的cellpadding属性？</p>
<p>中文原文：<a class="external" href="http://www.qianduan.net/rediscovering-html-tables.html" target="_blank">重新发现HTML表格</a></p>
<p>整理自：<a class="external" href="http://woork.blogspot.com/2009/09/rediscovering-html-tables.html" target="_blank">Woork</a></p>
<p>本文来源：<a class="external" href="http://www.qianduan.net/" target="_blank">前端观察</a></p>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=309&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/tech/309.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>《使命召唤6：现代战争2》(Call of Duty: Modern Warfare 2)</title>
		<link>http://www.solar1979.com/play/308.html</link>
		<comments>http://www.solar1979.com/play/308.html#comments</comments>
		<pubDate>Thu, 19 Nov 2009 13:39:47 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[Game]]></category>
		<category><![CDATA[下载]]></category>
		<category><![CDATA[使命召唤]]></category>
		<category><![CDATA[娱乐]]></category>
		<category><![CDATA[游戏]]></category>
		<category><![CDATA[硬盘版]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/play/308.html</guid>
		<description><![CDATA[【游戏简介】
《使命召唤：现代战争2》的故事将延续前作《使命召唤4：现代战争》结束的后几年，俄罗斯又再次陷入政治上的纷扰不安。伏拉米尔.马卡洛夫（Vladimir Makarov）这位和伊姆兰.扎哈夫（ImranZakhaev）恐怖组织有关连的粗暴领袖，策划了一连串即将危及世界安全的阴谋。
而在前作中绰号为&#8220;肥皂（Soap）&#8221;的麦克塔维许（MacTavish）中士，现在已经晋升到上尉了，他仍继续在为&#8220;英国特别空勤团（SAS）&#8221;效力，其合作单位是美国海军之&#8220;海豹突击队（SEAL）&#8221;，同时他还带领着一支&#8220;141特战队&#8221;（Task Force141）。在经历一连串可怕的恐怖攻击事件后，他将继续带领这支特战队出动前往俄国，以解除当地危急的情势。
俄罗斯那里正是大雪纷飞的季节，特战队必须在这种恶劣的气候中，渗透进敌军深藏在山中的秘密军事基地。在引爆大量炸药后，拿到情资的特战队必须骑上雪上摩托车来摆脱敌军的追杀。随后，特战队转而前往巴西最大城市里约热内卢，逮捕一名和这场阴谋有关的军火贩子，并沿着线索一路追查到阿富汗。特战队浑然不觉他们的情报出了点岔子，可能也错估了马卡洛夫邪恶计划的危险性&#8230;&#8230;

【版本说明】
英文；4.2G硬盘版配上2.1G动画包即为完整无损如果只想快餐式玩一下，就可以不用下载动画包附带原始EXE备份、附带注册表恢复与卸载工具
注：由于非正版用户不能联机，所以MP联机文件都已剔除（MP联机文件网盘下载，以备将来万一有联机破解）
但请放心，Special Ops合作战役部分完整的保留在4.2g内，因为这部分单机可玩。

【安装步骤】
1、解压缩至&#8220;纯英文字符的目录&#8221;，需10G临时空间2、双击setup.bat开始安装（安装时间群众普查贴）3、桌面快捷进游戏

【配置要求】
处理器 Intel&#174; Pentium&#174; 4 2.4 GHz 或 AMD&#174; Athlon&#8482; 64 2800+ 处理器或任何 1.8Ghz Dual Core处理器/显卡 NVIDIA&#174; Geforce&#8482; 6600 以上或 ATI&#174; Radeon&#174; 9800Pro以上

【游戏截图】







下载 Call of Duty: Modern Warfare 2 硬盘版（ed2k）
下载 Call of Duty: Modern Warfare 2 动画添加包（ed2k）
来源：VeryCD.COM
]]></description>
			<content:encoded><![CDATA[<h3>【游戏简介】</h3>
<p>《使命召唤：现代战争2》的故事将延续前作《使命召唤4：现代战争》结束的后几年，俄罗斯又再次陷入政治上的纷扰不安。伏拉米尔.马卡洛夫（Vladimir Makarov）这位和伊姆兰.扎哈夫（ImranZakhaev）恐怖组织有关连的粗暴领袖，策划了一连串即将危及世界安全的阴谋。</p>
<p>而在前作中绰号为&ldquo;肥皂（Soap）&rdquo;的麦克塔维许（MacTavish）中士，现在已经晋升到上尉了，他仍继续在为&ldquo;英国特别空勤团（SAS）&rdquo;效力，其合作单位是美国海军之&ldquo;海豹突击队（SEAL）&rdquo;，同时他还带领着一支&ldquo;141特战队&rdquo;（Task Force141）。在经历一连串可怕的恐怖攻击事件后，他将继续带领这支特战队出动前往俄国，以解除当地危急的情势。</p>
<p>俄罗斯那里正是大雪纷飞的季节，特战队必须在这种恶劣的气候中，渗透进敌军深藏在山中的秘密军事基地。在引爆大量炸药后，拿到情资的特战队必须骑上雪上摩托车来摆脱敌军的追杀。随后，特战队转而前往巴西最大城市里约热内卢，逮捕一名和这场阴谋有关的军火贩子，并沿着线索一路追查到阿富汗。特战队浑然不觉他们的情报出了点岔子，可能也错估了马卡洛夫邪恶计划的危险性&hellip;&hellip;</p>
<p><span id="more-308"></span><br />
<blockquote><strong>【版本说明】</strong></p>
<p>英文；4.2G硬盘版配上2.1G动画包即为完整无损如果只想快餐式玩一下，就可以不用下载动画包附带原始EXE备份、附带注册表恢复与卸载工具</p>
<p><em>注：由于非正版用户不能联机，所以MP联机文件都已剔除（<a target="_blank" rel="nofollow" href="http://www.rayfile.com/zh-cn/files/9b671317-cec0-11de-b511-0014221b798a/" class="external">MP联机文件网盘下载，以备将来万一有联机破解</a>）</em></p>
<p>但请放心，Special Ops合作战役部分完整的保留在4.2g内，因为这部分单机可玩。</p>
</blockquote>
<blockquote><p><strong>【安装步骤】</strong></p>
<p>1、解压缩至&ldquo;纯英文字符的目录&rdquo;，需10G临时空间2、双击setup.bat开始安装（<a target="_blank" rel="nofollow" href="http://3dmgame.chnren.com/bbs/showtopic-998397.html" class="external">安装时间群众普查贴</a>）3、桌面快捷进游戏</p>
</blockquote>
<blockquote><p><strong>【配置要求】</strong></p>
<p>处理器 Intel&reg; Pentium&reg; 4 2.4 GHz 或 AMD&reg; Athlon&trade; 64 2800+ 处理器或任何 1.8Ghz Dual Core处理器/显卡 NVIDIA&reg; Geforce&trade; 6600 以上或 ATI&reg; Radeon&reg; 9800Pro以上</p>
</blockquote>
<h3>【游戏截图】</h3>
<p align="center"><img src="http://image.com.com/gamespot/images/bigboxshots/2/951942_109828_front.jpg" alt="" /></p>
<p align="center"><img src="http://image.com.com/gamespot/images/2009/308/951942_20091105_790screen001.jpg" alt="" /></p>
<p align="center"><img src="http://image.com.com/gamespot/images/2009/308/951942_20091105_790screen002.jpg" alt="" /></p>
<p align="center"><img src="http://image.com.com/gamespot/images/2009/308/951942_20091105_790screen003.jpg" alt="" /></p>
<p align="center"><img src="http://image.com.com/gamespot/images/2009/169/951942_20090619_790screen002.jpg" alt="" /></p>
<p><img src="http://image.com.com/gamespot/images/2009/168/951942_20090618_790screen001.jpg" /></p>
<p><img src="http://image.com.com/gamespot/images/2009/151/951943_20090601_790screen002.jpg" /></p>
<p><a target="_blank" href="ed2k://|file|Call.of.Duty.Modern.Warfare.2.rip.rar|4525097049|b84188b7a5ac18a6ba50e42c126095b1|h=6gqexnrrrf5gxwmv2d4byc5u2oi346ut|/" class="download">下载 Call of Duty: Modern Warfare 2 硬盘版（ed2k）</a></p>
<p><a target="_blank" href="ed2k://|file|%5B%E4%BD%BF%E5%91%BD%E5%8F%AC%E5%94%A46%EF%BC%9A%E7%8E%B0%E4%BB%A3%E6%88%98%E4%BA%892.%E5%8A%A8%E7%94%BB%E6%B7%BB%E5%8A%A0%E5%8C%85%5D.Call.of.Duty.Modern.Warfare.2.movie.addon.rar|2238871371|0af9d1de564d82213eab71da6022a0f7|h=doqjf2j27xztiu4x5muduzbwx5yhmdxe|/" class="download">下载 Call of Duty: Modern Warfare 2 动画添加包（ed2k）</a></p>
<p>来源：<a target="_blank" href="http://www.verycd.com/topics/2780410/" class="external">VeryCD.COM</a></p>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=308&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/play/308.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opera Mobile 10 beta 高清无码大图欣赏</title>
		<link>http://www.solar1979.com/news/307.html</link>
		<comments>http://www.solar1979.com/news/307.html#comments</comments>
		<pubDate>Wed, 18 Nov 2009 09:47:15 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[大图]]></category>
		<category><![CDATA[手机]]></category>
		<category><![CDATA[无码]]></category>
		<category><![CDATA[浏览器]]></category>
		<category><![CDATA[高清]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/news/307.html</guid>
		<description><![CDATA[王者归来 &#8211; Opera Mobile 10 beta 免费啦！











来源：Opera 官方中文社区
]]></description>
			<content:encoded><![CDATA[<p><a class="external" href="http://www.cnbeta.com/articles/98098.htm" target="_blank">王者归来 &#8211; Opera Mobile 10 beta 免费啦！</a></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25195" alt="Image6.png" /></p>
<p><span id="more-307"></span></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25202" alt="Image33.png" /></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25201" alt="Image31.png" /></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25200" alt="Image23.png" /></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25199" alt="Image21.png" /></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25198" alt="Image12.png" /></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25197" alt="Image9.png" /></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25196" alt="Image7.png" /></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25194" alt="Image4.png" /></p>
<p><img src="http://bbs.operachina.com/download/file.php?id=25193" alt="Image2.png" /></p>
<p>来源：<a class="external" href="http://bbs.operachina.com/viewtopic.php?t=58595" target="_blank">Opera 官方中文社区</a></p>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=307&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/news/307.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>用手机访问solar1979.com</title>
		<link>http://www.solar1979.com/wordpress/306.html</link>
		<comments>http://www.solar1979.com/wordpress/306.html#comments</comments>
		<pubDate>Tue, 10 Nov 2009 08:35:25 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[移动版]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/?p=306</guid>
		<description><![CDATA[很简单，记住这个域名，m.solar1979.com 即可。感谢 LiveSino 的移动版Wordpress模板。

]]></description>
			<content:encoded><![CDATA[<p>很简单，记住这个域名，m.solar1979.com 即可。感谢 LiveSino 的移动版Wordpress模板。</p>
<p><img src="http://farm3.static.flickr.com/2670/4092359386_d5c8459b15_o.png" alt="移动版页面效果" /></p>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=306&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/wordpress/306.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows(7) Update 8007273D 错误解决方案</title>
		<link>http://www.solar1979.com/tech/305.html</link>
		<comments>http://www.solar1979.com/tech/305.html#comments</comments>
		<pubDate>Tue, 10 Nov 2009 04:57:58 +0000</pubDate>
		<dc:creator>solar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[8007273D]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Update]]></category>
		<category><![CDATA[Windows7]]></category>
		<category><![CDATA[微软]]></category>
		<category><![CDATA[更新]]></category>
		<category><![CDATA[错误]]></category>

		<guid isPermaLink="false">http://www.solar1979.com/?p=305</guid>
		<description><![CDATA[Start &#62;&#62; All programs &#62;&#62; Accessories &#62;&#62; Command Prompt(Run as administrator) 执行 Netsh winsock reset 提示 Successfully reset the Winsock Catalog 搞定。
开始菜单 &#62;&#62; 所有程序 &#62;&#62; 附件 &#62;&#62; 命令行模式(右键&#8220;以管理员身份运行&#8221;) 执行 Netsh winsock reset 提示 Successfully reset the Winsock Catalog 搞定。
来源
]]></description>
			<content:encoded><![CDATA[<p>Start &gt;&gt; All programs &gt;&gt; Accessories &gt;&gt; Command Prompt(Run as administrator) 执行 Netsh winsock reset 提示 Successfully reset the Winsock Catalog 搞定。</p>
<p>开始菜单 &gt;&gt; 所有程序 &gt;&gt; 附件 &gt;&gt; 命令行模式(右键&ldquo;以管理员身份运行&rdquo;) 执行 Netsh winsock reset 提示 Successfully reset the Winsock Catalog 搞定。</p>
<p><a class="external" target="blank" href="http://social.technet.microsoft.com/Forums/en/w7itprosecurity/thread/90db8c64-5024-49cf-9473-a1ae2babbbcb">来源</a></p>
<img src="http://www.solar1979.com/?ak_action=api_record_view&id=305&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.solar1979.com/tech/305.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
