<?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>full house</title>
	<atom:link href="http://full-house.cn/feed" rel="self" type="application/rss+xml" />
	<link>http://full-house.cn</link>
	<description>SELECT blog FROM TonyHu.full-house WHERE subject IN (Life,Web,Database)</description>
	<lastBuildDate>Wed, 16 May 2012 10:13:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Background-Position: left right center top buttom属性的解释</title>
		<link>http://full-house.cn/201205/css-background-position.html</link>
		<comments>http://full-house.cn/201205/css-background-position.html#comments</comments>
		<pubDate>Wed, 16 May 2012 10:13:02 +0000</pubDate>
		<dc:creator>Tony hu</dc:creator>
				<category><![CDATA[Css]]></category>

		<guid isPermaLink="false">http://full-house.cn/?p=873</guid>
		<description><![CDATA[1.background-position:left top;
 
背景图片的左上角和容器(container)的左上角对齐，超出的部分隐藏。
等同于 background-position:0,0;
也等同于background-position:0%,0%;
2.background-position:right bottom;
背景图片的右下角和容器(container)的右下角对齐，超出的部分隐藏。
等同于background-positon:100%,100%;
也等同于background-positon:容器(container)的宽度-背景图片的宽度,容器(container)的高度-背景图片的高度
3.background-position:500px 15px；
背景图片从容器(container)左上角的地方向右移500px,向下移15px，超出的部分隐藏。
4.background-position:-500px -15px;
背景图片从容器(container)左上角的地方向左移500px，向上移15px，超出的部分隐藏。
5.background-position:50% 50%;这句经常让新手出错！
等同于left：{容器(container)的宽度—背景图片的宽度}*left百分比，超出的部分隐藏。
等同于right：{容器(container)的高度—背景图片的高度}*right百分比，超出的部分隐藏。
例如：background-position:50% 50%;就是background-position:(1000-2000)*50%px,(500-30)*50%px;即background- position:-500px,235px;也就是背景图片从容器(container)的左上角向左移500px，向下移235px；
6.（这种情况背景图片应该用bg2.jpg才能看出效果,bg.jpg的高度太小效果不明显）
background-position:-50% -50%;
等同于left：-{{容器(container)的宽度—背景图片的宽度}*left百分比（百分比都取正值）}，超出的部分隐藏。
等同于right：-{{容器(container)的高度—背景图片的高度}*right百分比（百分比都取正值）}，超出的部分隐藏。
例如：background-position:-50% -50%;就是background-position:-{(1000-500)*50%}px,-{(500-360)*50%}px;即 background- position:-250px,-70px;也就是背景图片从容器(container)的左上角向左移250px，向上移70px；

&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
之前一直没有理解，今天终于搞明白了，强大的CSS啊。
转自 http://blog.csdn.net/yja886/article/details/7171135
]]></description>
			<content:encoded><![CDATA[<p><code>1.background-position:left top;</code></p>
<p><code> </code></p>
<p><code>背景图片的左上角和容器(container)的左上角对齐，超出的部分隐藏。</code></p>
<p><code>等同于 background-position:0,0;</p>
<p>也等同于background-position:0%,0%;</p>
<p>2.background-position:right bottom;</p>
<p>背景图片的右下角和容器(container)的右下角对齐，超出的部分隐藏。</p>
<p>等同于background-positon:100%,100%;</p>
<p>也等同于background-positon:容器(container)的宽度-背景图片的宽度,容器(container)的高度-背景图片的高度</p>
<p>3.background-position:500px 15px；</p>
<p>背景图片从容器(container)左上角的地方向右移500px,向下移15px，超出的部分隐藏。</p>
<p>4.background-position:-500px -15px;</p>
<p>背景图片从容器(container)左上角的地方向左移500px，向上移15px，超出的部分隐藏。</p>
<p>5.background-position:50% 50%;这句经常让新手出错！</p>
<p>等同于left：{容器(container)的宽度—背景图片的宽度}*left百分比，超出的部分隐藏。</p>
<p>等同于right：{容器(container)的高度—背景图片的高度}*right百分比，超出的部分隐藏。</p>
<p>例如：background-position:50% 50%;就是background-position:(1000-2000)*50%px,(500-30)*50%px;即background- position:-500px,235px;也就是背景图片从容器(container)的左上角向左移500px，向下移235px；</p>
<p>6.（这种情况背景图片应该用bg2.jpg才能看出效果,bg.jpg的高度太小效果不明显）</p>
<p>background-position:-50% -50%;</p>
<p>等同于left：-{{容器(container)的宽度—背景图片的宽度}*left百分比（百分比都取正值）}，超出的部分隐藏。</p>
<p>等同于right：-{{容器(container)的高度—背景图片的高度}*right百分比（百分比都取正值）}，超出的部分隐藏。</p>
<p>例如：background-position:-50% -50%;就是background-position:-{(1000-500)*50%}px,-{(500-360)*50%}px;即 background- position:-250px,-70px;也就是背景图片从容器(container)的左上角向左移250px，向上移70px；</p>
<p></code></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>之前一直没有理解，今天终于搞明白了，强大的CSS啊。</p>
<p>转自 <a  href="http://blog.csdn.net/yja886/article/details/7171135">http://blog.csdn.net/yja886/article/details/7171135</a></p>
]]></content:encoded>
			<wfw:commentRss>http://full-house.cn/201205/css-background-position.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>轻描淡写一下最近的情况</title>
		<link>http://full-house.cn/201204/recent.html</link>
		<comments>http://full-house.cn/201204/recent.html#comments</comments>
		<pubDate>Sun, 29 Apr 2012 11:26:35 +0000</pubDate>
		<dc:creator>Tony hu</dc:creator>
				<category><![CDATA[Myself]]></category>
		<category><![CDATA[home]]></category>

		<guid isPermaLink="false">http://full-house.cn/?p=868</guid>
		<description><![CDATA[嗯，估计我老婆应该会生儿子，80%的可能性，如果生女儿我一样会喜欢。
还有40天左右要生了。
最近更在忙着家教大本营的功能更新。
最近我老婆在忙着苏大家教吧的业务，虽然排名受到了影响，不过业务量有增不减。
最近接了一个单子，帮助上海一家公司建一个家教网站。
最近很忙，怠慢了好朋友的事情，实在抱歉。
好了，就这样吧，没有想要写这个博客，只是打开了后台，就写两句吧，呵呵！
对了，最近一同学结婚，回去了一下，结果有点失望，无所谓啦！
]]></description>
			<content:encoded><![CDATA[<p>嗯，估计我老婆应该会生儿子，80%的可能性，如果生女儿我一样会喜欢。</p>
<p>还有40天左右要生了。</p>
<p>最近更在忙着<a  href="http://www.jjdby.com.cn/">家教大本营</a>的功能更新。</p>
<p>最近我老婆在忙着<a  href="http://www.sudajiajiao.com/">苏大家教吧</a>的业务，虽然排名受到了影响，不过业务量有增不减。</p>
<p>最近接了一个单子，帮助上海一家公司建一个家教网站。</p>
<p>最近很忙，怠慢了好朋友的事情，实在抱歉。</p>
<p>好了，就这样吧，没有想要写这个博客，只是打开了后台，就写两句吧，呵呵！</p>
<p>对了，最近一同学结婚，回去了一下，结果有点失望，无所谓啦！</p>
]]></content:encoded>
			<wfw:commentRss>http://full-house.cn/201204/recent.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2012 To Do List</title>
		<link>http://full-house.cn/201112/2012-to-do-list.html</link>
		<comments>http://full-house.cn/201112/2012-to-do-list.html#comments</comments>
		<pubDate>Sat, 31 Dec 2011 17:11:55 +0000</pubDate>
		<dc:creator>Tony hu</dc:creator>
				<category><![CDATA[Mylife]]></category>
		<category><![CDATA[Myself]]></category>

		<guid isPermaLink="false">http://full-house.cn/?p=866</guid>
		<description><![CDATA[

反思2011：
 
刚才一直在忙着给爸妈订机票的事，突然窗外响起了鞭炮声，我意识到传说中的2012到来了，过了一会儿小姜给我发了一条祝福短信，又想到了2008年的12月31日寒山寺听钟声的事了，呵呵。到了现在，即使以前是很好的朋友，在一些节假日也不愿意给一个问候，哪怕是一个短信。所以前几天看到这个日志的时候非常有感慨！
经常关注 DBAnotes 的博客，所以从2009起都会写一个小小的计划（2009，2010，2011），哪怕完成不了，也要装模作样地写上。
 
2011年我让老婆从宁波来到苏州，并在苏州安了家；
2011年我们结婚了；
2011年老婆怀孕了，再过半年，我就要做爸爸了；
 
展望2012：

迎接孩子出生，照顾好老婆。
努力多赚钱，为孩子创造良好的环境。
一定要健身，我现在150啦，可以想像吗？
和朋友、爸妈多沟通，多交流。

好了，老婆早就睡觉了，我今年就写这么多了，明天早上我给所有的好友群发短信，使用106号段发，大家不要感到意外。
2012 我们来了&#8230;


]]></description>
			<content:encoded><![CDATA[<div id="blogDetailDiv">
<div>
<div><strong>反思2011：</strong></div>
<div> </div>
<div>刚才一直在忙着给爸妈订机票的事，突然窗外响起了鞭炮声，我意识到传说中的2012到来了，过了一会儿小姜给我发了一条祝福短信，又想到了<a  href="http://user.qzone.qq.com/359898601/blog/1230748299" target="_blank">2008年的12月31日寒山寺听钟声的事了</a>，呵呵。到了现在，即使以前是很好的朋友，在一些节假日也不愿意给一个问候，哪怕是一个短信。所以前几天看到<a  href="http://user.qzone.qq.com/359898601/blog/1325210831" target="_blank">这个日志</a>的时候非常有感慨！</div>
<div>经常关注 <a  href="http://www.dbanotes.net/" target="_blank">DBAnotes</a> 的博客，所以从2009起都会写一个小小的计划（<a  href="http://full-house.cn/200907/2009-to-do-list.html" target="_blank">2009</a>，<a  href="http://full-house.cn/200912/2010-to-do-list.html" target="_blank">2010</a>，<a  href="http://full-house.cn/201012/2011-to-do-list.html" target="_blank">2011</a>），哪怕完成不了，也要装模作样地写上。</div>
<div> </div>
<div>2011年我让老婆从宁波来到苏州，并在苏州安了家；</div>
<div>2011年我们结婚了；</div>
<div>2011年老婆怀孕了，再过半年，我就要做爸爸了；</div>
<div> </div>
<div><strong>展望2012：</strong></div>
<ol>
<li>迎接孩子出生，照顾好老婆。</li>
<li>努力多赚钱，为孩子创造良好的环境。</li>
<li>一定要健身，我现在150啦，可以想像吗？</li>
<li>和朋友、爸妈多沟通，多交流。</li>
</ol>
<p>好了，老婆早就睡觉了，我今年就写这么多了，明天早上我给所有的好友群发短信，使用106号段发，大家不要感到意外。</p>
<p>2012 我们来了&#8230;</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://full-house.cn/201112/2012-to-do-list.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011-11-26 @ 松鹤楼</title>
		<link>http://full-house.cn/201111/song-he-lou.html</link>
		<comments>http://full-house.cn/201111/song-he-lou.html#comments</comments>
		<pubDate>Thu, 03 Nov 2011 10:29:53 +0000</pubDate>
		<dc:creator>Tony hu</dc:creator>
				<category><![CDATA[Myself]]></category>

		<guid isPermaLink="false">http://full-house.cn/?p=864</guid>
		<description><![CDATA[我们婚宴第一站——苏州。我们准备了四个包厢，应该够了，希望朋友都能过来啊。
]]></description>
			<content:encoded><![CDATA[<p>我们婚宴第一站——苏州。我们准备了四个包厢，应该够了，希望朋友都能过来啊。</p>
]]></content:encoded>
			<wfw:commentRss>http://full-house.cn/201111/song-he-lou.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>我要做爸爸啦</title>
		<link>http://full-house.cn/201110/i-will-be-a-father.html</link>
		<comments>http://full-house.cn/201110/i-will-be-a-father.html#comments</comments>
		<pubDate>Sat, 08 Oct 2011 16:51:42 +0000</pubDate>
		<dc:creator>Tony hu</dc:creator>
				<category><![CDATA[Myself]]></category>

		<guid isPermaLink="false">http://full-house.cn/?p=862</guid>
		<description><![CDATA[今天去医院检查了，老婆怀孕了，我再过9个月就要做爸爸啦，呵呵，肩上的责任更大啦，加油。
]]></description>
			<content:encoded><![CDATA[<p>今天去医院检查了，老婆怀孕了，我再过9个月就要做爸爸啦，呵呵，肩上的责任更大啦，加油。</p>
]]></content:encoded>
			<wfw:commentRss>http://full-house.cn/201110/i-will-be-a-father.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

