<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>【梦里飞花寻梦船】</title><link>http://blog.csdn.net/alexpengster/</link><description>Alex的web之旅ゞοo</description><dc:language>zh-CN</dc:language><lastUpdateTime>Thu, 24 May 2007 16:48:46 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>alexpeng</dc:creator><title>从写的一个form的JS引发的思考</title><link>http://blog.csdn.net/alexpengster/archive/2007/05/24/1624342.aspx</link><pubDate>Thu, 24 May 2007 16:49:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/05/24/1624342.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1624342.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/05/24/1624342.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1624342.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1624342</trackback:ping><description>开发软件就像开发新产品，无法一开始就能定义软件产品最终的规程，过程中需要研发、创意、尝试错误，所以没有一种固定的流程可以保证专案成功。Scrum 将软件开发团队比拟成橄榄球队，有明确的最高目标，熟悉开发流程中所需具备的最佳典范与技术，具有高度自主权，紧密地沟通合作，以高度弹性解决各种挑战，确保每天、每个阶段都朝向目标有明确的推进。&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1624342.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>定义语言编码</title><link>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591870.aspx</link><pubDate>Sun, 29 Apr 2007 15:52:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591870.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1591870.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591870.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1591870.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1591870</trackback:ping><description>为了被浏览器正确解释和通过W3C代码校验，所有的XHTML文档都必须声明它们所使用的编码语言，我们一般使用gb2312(简体中文)，制作多国语言页面也有可能用Unicode、ISO-8859-1等，根据你的需要定义。&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1591870.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>什么是名字空间</title><link>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591865.aspx</link><pubDate>Sun, 29 Apr 2007 15:51:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591865.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1591865.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591865.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1591865.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1591865</trackback:ping><description>由于xml允许你自己定义自己的标识，你定义的标识和其他人定义的标识有可能相同，但表示不同的意义。当文件交换或者共享的时候就容易产生错误。为了避免这种错误发生，XML采用名字空间声明，允许你通过一个网址指向来识别你的标识。例如：&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1591865.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>[技巧]CSS的超级技巧大放送</title><link>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591859.aspx</link><pubDate>Sun, 29 Apr 2007 15:47:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591859.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1591859.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591859.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1591859.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1591859</trackback:ping><description>[技巧]CSS的超级技巧大放送  一.使用css缩写。二.明确定义单位，除非值为0.只有两个例外情况可以不定义单位：行高和0值。当在XHTML中使用CSS，CSS里定义的元素名称是区分大小写的。如果怕有冲突，可以在样式表一开始就先定义所有元素的margin和padding值都为0，象这样：CSS中，子元素自动继承父元素的属性值，象颜色、字体等，已经在父元素中定义过的，在子元素中可以直接继承，不需要重复定义。在CSS文件中，你已经定义了元素p，又定义了一个classupdate.例如：我们先定义两个样式，第一个样式背景为#666；&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1591859.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>在 CSS 中关于字体处理效果的思考</title><link>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591860.aspx</link><pubDate>Sun, 29 Apr 2007 15:47:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591860.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1591860.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591860.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1591860.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1591860</trackback:ping><description>在 CSS 中关于字体处理效果的思考。看看下面的图示就会发现，英文字体里的那些变化在中文字体里都弱化了。serif 字体适合作为段落文字使用，例如Time NewRoman。事实上，像 Verdana这个字体是由世界上顶级的字体设计师花了差不多两年时间设计出来的，Microsoft负责买单，然后免费提供给用户，这个字体是IE安装的一部分，如果你安装了IE4以上的版本，你的电脑里就一定有这个字体，所以你不必担心用户是否有这个字体。可能要多说几句的是 em 和 ex，em 在 css 里代表就是字体字号的大小，例如对于12 pt的字体来说, 1 em 就等于12 pt 范例：&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1591860.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>常用CSS缩写语法总结</title><link>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591855.aspx</link><pubDate>Sun, 29 Apr 2007 15:46:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591855.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1591855.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591855.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1591855.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1591855</trackback:ping><description>常用CSS缩写语法总结作者：阿捷 2005-4-8 15:28:00.css缩写的主要规则如下：颜色。16进制的色彩值，如果每两位的值相同，可以缩写一半，例如：#000000可以缩写为#000;#336699可以缩写为#369;盒尺寸。可以缩写为一句：background:#f00 url(background.gif) no-repeat fixed 0 0;你可以省略其中一个或多个属性值，如果省略，该属性值将用浏览器默认值，默认值为：color: transparent image: none repeat: repeat attachment: scroll position: 0% 0% 字体(fonts)注意，如果你缩写字体定义，至少要定义font-size和font-family两个值。&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1591855.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>HTML中meta的作用</title><link>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591850.aspx</link><pubDate>Sun, 29 Apr 2007 15:43:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591850.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1591850.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/04/29/1591850.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1591850.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1591850</trackback:ping><description>meta是用来在HTML文档中模拟HTTP协议的响应头报文。&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1591850.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>标准的Flash插入代码</title><link>http://blog.csdn.net/alexpengster/archive/2007/04/28/1589593.aspx</link><pubDate>Sat, 28 Apr 2007 22:54:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/04/28/1589593.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1589593.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/04/28/1589593.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1589593.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1589593</trackback:ping><description>程序代码
&lt;!-- 标准的的Flash插入 
设置高度与宽度：
width="400" height="400"
设置路径：&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1589593.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>CSS 命名规范</title><link>http://blog.csdn.net/alexpengster/archive/2007/04/28/1589578.aspx</link><pubDate>Sat, 28 Apr 2007 22:45:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/04/28/1589578.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1589578.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/04/28/1589578.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1589578.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1589578</trackback:ping><description>所有的xhtml代码小写
属性的值一定要用双引号("")括起来，且一定要有值
每个标签都要有开始和结束，且要有正确的层次
空元素要有结束的tag或于开始的tag后加上"/"
表现与结构完全分离，代码中不涉及任何的表现元素，如style、font、bgColor、border等
h1到h5的定义，应遵循从大到小的原则，体现文档的结构，并有利于搜索引擎的查询。
给每一个表格和表单加上一个唯&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1589578.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>搜索引擎对页面各元素的权重比例</title><link>http://blog.csdn.net/alexpengster/archive/2007/04/28/1589574.aspx</link><pubDate>Sat, 28 Apr 2007 22:43:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/04/28/1589574.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1589574.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/04/28/1589574.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1589574.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1589574</trackback:ping><description>外部链接文字：10分 
Inbound link text: 10 points. 
标题：10分 
title: 10 points. 
域名：7分 
domain name: 7 points. 
H1,H2字号标题：5分 
large h1-h2 headings: 5 points. 
每段首句：5分 &lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1589574.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>IE 3px bug &amp; display problem</title><link>http://blog.csdn.net/alexpengster/archive/2007/03/20/1535019.aspx</link><pubDate>Tue, 20 Mar 2007 15:44:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/03/20/1535019.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1535019.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/03/20/1535019.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1535019.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1535019</trackback:ping><description>在有背景色时能明显看到IE下古老的3px bug，注意是在dd内部而不是外边（上图IE6.0、下图FF1.5，以下同）。&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1535019.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>网站策划与风格论</title><link>http://blog.csdn.net/alexpengster/archive/2007/03/20/1534867.aspx</link><pubDate>Tue, 20 Mar 2007 13:35:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/03/20/1534867.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1534867.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/03/20/1534867.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1534867.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1534867</trackback:ping><description>今天又有人给我提这篇老文章网站策划5大趋势，有些问题还是值得讨论的，文中提出了5点：Quote1. 具备市场/销售意识，且掌握扎实技术的专业网站策划人才成抢手货2. 人机工程学思想将大行其道3. 文化理念全面渗透网站策划实战4. 系统网站策划理论在五年内产生5. 网站策划的专业化导致网站设计风格整合：简约与个性成主流文章写的很好，国内浮躁的互联网环境内，这么有思想的真知灼见者不多见。UE不等于策划，不过大多公司都是打着招UE的幌子找策划，于是刹那间诞生了无数自称UE，且不明白该干嘛的人。&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1534867.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>越减越妙</title><link>http://blog.csdn.net/alexpengster/archive/2007/03/20/1534646.aspx</link><pubDate>Tue, 20 Mar 2007 10:56:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/03/20/1534646.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1534646.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/03/20/1534646.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1534646.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1534646</trackback:ping><description>朋友推荐我一本很棒的书——《最佳设计100细则》（此书同时还劝告设计师：使用公认的设计原则能增加成功设计的概率，优秀的设计师有时并不理会设计原则，但是，他们这样做，尽管因违反原则而付出了代价，他们往往会进行一些补救，取得最佳的效果。1、可识别性：任何人，不论其感知能力如何，都能一眼识别出设计，都能使用该设计；这是他受益最深的一条原则，“有力的文字都很简练。句子里不应该有多余的文字，段落中不应该有多余的句子。同样，画上不应该有多余的线条，机器上不应该有多余的零件。”&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1534646.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>小论中英文网站的设计差异</title><link>http://blog.csdn.net/alexpengster/archive/2007/03/20/1534644.aspx</link><pubDate>Tue, 20 Mar 2007 10:55:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/03/20/1534644.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1534644.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/03/20/1534644.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1534644.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1534644</trackback:ping><description>小论中英文网站的设计差异你有没有被客户强迫照搬英文网站的经历？首先我们对比一下菜单。同时我们发现，在行数相同的情况下，中文菜单比英文菜单要长。关于中文字符和英文字符差异而导致的设计效果差异（希望能有机会对此进行深入研究。）2、中文缺乏一种起伏的节奏；如何解决这个问题，设计师有的是办法，我就不一一赘述了，我这里想说的是：中文和英文由于语言属性根本上的差异，因此完全照搬英文站的设计是一种愚蠢的、教条的思路，尤其当这种设计方案需要用同一种计算机语言（XHTML＋CSS）来实现的时候，细节的修改就显得更加重要。&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1534644.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>alexpeng</dc:creator><title>比尔盖茨十条职场箴言</title><link>http://blog.csdn.net/alexpengster/archive/2007/03/19/1533714.aspx</link><pubDate>Mon, 19 Mar 2007 14:51:00 GMT</pubDate><guid>http://blog.csdn.net/alexpengster/archive/2007/03/19/1533714.aspx</guid><wfw:comment>http://blog.csdn.net/alexpengster/comments/1533714.aspx</wfw:comment><comments>http://blog.csdn.net/alexpengster/archive/2007/03/19/1533714.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexpengster/comments/commentRss/1533714.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1533714</trackback:ping><description>      1.生活是不公平的，要去适应它；

　　2.这世界并不会在意你的自尊，这世界指望你在自我感觉良好之前先要有所成就；

　　3.高中刚毕业你不会成为一个公司的副总裁，直到你将此职位挣到手；&lt;img src ="http://blog.csdn.net/alexpengster/aggbug/1533714.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>