<?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>吓我一跳 &#187; 美化</title>
	<atom:link href="http://digegg.com/article/tag/beautification/feed" rel="self" type="application/rss+xml" />
	<link>http://digegg.com</link>
	<description>分享新鲜，传递快乐</description>
	<lastBuildDate>Tue, 31 Jan 2012 13:49:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress美化技巧 &#8211; 表格的美化</title>
		<link>http://digegg.com/article/570.htm</link>
		<comments>http://digegg.com/article/570.htm#comments</comments>
		<pubDate>Thu, 26 Nov 2009 08:26:30 +0000</pubDate>
		<dc:creator>Yusn</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[美化]]></category>

		<guid isPermaLink="false">http://www.digegg.com/?p=570</guid>
		<description><![CDATA[玩Wordpress好长时间了期间和很多同学交流过一些看法和认识，积累了一点经验，写这篇日志来谈一下Wordpress主题表格的美化技巧。对于HTML表格的认识我们最熟悉的就是&#60;table&#62;&#60;/table&#62;、&#60;tr&#62;&#60;/tr&#62;、&#60;th&#62;&#60;/th&#62;这三对Html标签，而&#60;thead&#62;、&#60;tbody&#62;、&#60;caption&#62;和&#60;th&#62;等却时常被我们忽视，下面就来看看如何使用css样式来美化Wordpress中的表格。 下面不妨使用这些标记写一个表格，如下： &#60;table border=”1&#8243; summary=”summary定义的是摘要”&#62; &#60;caption&#62;caption定义的是首部说明&#60;/caption&#62; &#60;thead&#62; &#60;tr&#62; &#60;th&#62;Month&#60;/th&#62; &#60;th&#62;Savings&#60;/th&#62; &#60;/tr&#62; &#60;/thead&#62; &#60;tbody&#62; &#60;tr&#62; &#60;th&#62;January&#60;/th&#62; &#60;td&#62;$100&#60;/td&#62; &#60;/tr&#62; &#60;tr&#62; &#60;th&#62;February&#60;/th&#62; &#60;td&#62;$80&#60;/td&#62; &#60;/tr&#62; &#60;/tbody&#62; &#60;tfoot&#62; &#60;tr&#62; &#60;th&#62;Sum&#60;/th&#62; &#60;td&#62;$180&#60;/td&#62; &#60;/tr&#62; &#60;/tfoot&#62;&#60;/table&#62;? 说明： th定义表格内的表头单元格，th 元素内部的文本通常会呈现为粗体。 tr 标签定义 HTML 表格中的行。 tr 元素包含一个或多个 th 或 td 元素。 td 标签定义 HTML 表格中的标准单元格。 HTML 表格有两类单元格： 表头单元 &#8211; 包含头部信息（由 th 元素创建） 标准单元 &#8211; 包含数据（由 [...]]]></description>
		<wfw:commentRss>http://digegg.com/article/570.htm/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>WordPress美化技巧:如何修改或自定义列表项目li标签前的图标</title>
		<link>http://digegg.com/article/564.htm</link>
		<comments>http://digegg.com/article/564.htm#comments</comments>
		<pubDate>Tue, 17 Nov 2009 02:34:30 +0000</pubDate>
		<dc:creator>Yusn</dc:creator>
				<category><![CDATA[使用教程]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[美化]]></category>

		<guid isPermaLink="false">http://www.digegg.com/?p=564</guid>
		<description><![CDATA[不知道你在查看自己和别人的日志时有没有发现：有的日志中列表项目&#60;li&#62;标签前是一个空心圆，有的是实心的小方块，有的是阿拉伯数字&#8230;今天就来看一下Wordpress上如何修改&#60;li&#62; 标签前的图标，其实不光是Wordpress，只要是使用css样式的程序都可以，如：Discuz、Z-blog、pjblog等等。 &#60;li&#62;标签简介： &#60;li&#62;标签可以用在有序列表&#60;ol&#62;标签和无序列表&#60;ul&#62;标签中使用，也就是说如果把&#60;li&#62;?放在&#60;ol&#62;中，可能就会出现1、2、3这样的顺序；如果放在&#60;ul&#62;中，则可能是一系列的小原点或小方块； 其实不管是放在&#60;ol&#62;里还在&#60;ul&#62;里，使用的都只是一个css属性：“list-style-type”： list-style-type，可适用的属性在css2.1版中包括 disc &#124; circle &#124; square &#124; decimal &#124; decimal-leading-zero &#124; lower-roman &#124; upper-roman &#124; lower-greek &#124; lower-latin &#124; upper-latin &#124; armenian &#124; georgian &#124; none &#124; inherit 值 描述 disc 实心圆 默认 circle 空心圆 square 实心方块 decimal 数字 lower-roman 小写罗马数字(i, ii, iii, iv, v, 等) upper-roman 大写罗马数字(I, II, III, [...]]]></description>
		<wfw:commentRss>http://digegg.com/article/564.htm/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

