<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 对网页圆角设计的一些思考</title>
	<atom:link href="http://wlsy.me/1318/feed/" rel="self" type="application/rss+xml" />
	<link>http://wlsy.me/1318/</link>
	<description>还活着呢</description>
	<lastBuildDate>Sat, 31 Jul 2010 11:07:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 子寒</title>
		<link>http://wlsy.me/1318/comment-page-1/#comment-502</link>
		<dc:creator>子寒</dc:creator>
		<pubDate>Mon, 11 May 2009 07:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.g9net.com/2009/02/07/fillet-of-page-some-thoughts-on-design.html#comment-502</guid>
		<description>又学习了~</description>
		<content:encoded><![CDATA[<p>又学习了~</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eddie</title>
		<link>http://wlsy.me/1318/comment-page-1/#comment-335</link>
		<dc:creator>eddie</dc:creator>
		<pubDate>Tue, 24 Feb 2009 09:50:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.g9net.com/2009/02/07/fillet-of-page-some-thoughts-on-design.html#comment-335</guid>
		<description>呵呵，圆角凸显内容一个原因是你加了渐变
其实我觉得圆角还是很受人欢迎的
但是现在使用圆角就要增加图片，用js在低级浏览器偶尔也会有问题
还是期待CSS3吧</description>
		<content:encoded><![CDATA[<p>呵呵，圆角凸显内容一个原因是你加了渐变<br />
其实我觉得圆角还是很受人欢迎的<br />
但是现在使用圆角就要增加图片，用js在低级浏览器偶尔也会有问题<br />
还是期待CSS3吧</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 神飞</title>
		<link>http://wlsy.me/1318/comment-page-1/#comment-334</link>
		<dc:creator>神飞</dc:creator>
		<pubDate>Fri, 13 Feb 2009 13:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.g9net.com/2009/02/07/fillet-of-page-some-thoughts-on-design.html#comment-334</guid>
		<description>同意</description>
		<content:encoded><![CDATA[<p>同意</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wlsy</title>
		<link>http://wlsy.me/1318/comment-page-1/#comment-333</link>
		<dc:creator>wlsy</dc:creator>
		<pubDate>Fri, 13 Feb 2009 11:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.g9net.com/2009/02/07/fillet-of-page-some-thoughts-on-design.html#comment-333</guid>
		<description>对css3来说认可的属性是border-radius，就目前来说没有任何一款浏览器支持这个属性，实现圆角和阴影的都是用到私有属性。你看后台登陆的css.
-moz-border-radius: 11px;/*这个是ff,Gecko引擎专用的*/
-khtml-border-radius: 11px;/*这是使用khtml引擎专用的*/
-webkit-border-radius: 11px;/*这是基于webkit引擎专用的*/
border-radius: 5px;/*这才是css3定义的圆角属性*/
如果你把
-moz-border-radius: 11px;
-khtml-border-radius: 11px;
-webkit-border-radius: 11px;
这些删掉的话，你会发现显示的是直角，也就是说就目前来说的浏览器都还不支持border-radius: 5px;这个属性
所以总的来说，实现圆角是用到不同浏览器的私有属性，css3要普及还要等很久很久的。</description>
		<content:encoded><![CDATA[<p>对css3来说认可的属性是border-radius，就目前来说没有任何一款浏览器支持这个属性，实现圆角和阴影的都是用到私有属性。你看后台登陆的css.<br />
-moz-border-radius: 11px;/*这个是ff,Gecko引擎专用的*/<br />
-khtml-border-radius: 11px;/*这是使用khtml引擎专用的*/<br />
-webkit-border-radius: 11px;/*这是基于webkit引擎专用的*/<br />
border-radius: 5px;/*这才是css3定义的圆角属性*/<br />
如果你把<br />
-moz-border-radius: 11px;<br />
-khtml-border-radius: 11px;<br />
-webkit-border-radius: 11px;<br />
这些删掉的话，你会发现显示的是直角，也就是说就目前来说的浏览器都还不支持border-radius: 5px;这个属性<br />
所以总的来说，实现圆角是用到不同浏览器的私有属性，css3要普及还要等很久很久的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 神飞</title>
		<link>http://wlsy.me/1318/comment-page-1/#comment-332</link>
		<dc:creator>神飞</dc:creator>
		<pubDate>Fri, 13 Feb 2009 07:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.g9net.com/2009/02/07/fillet-of-page-some-thoughts-on-design.html#comment-332</guid>
		<description>wp的后台是使用了CSS3的圆角和阴影属性，所以在FF下看到的是圆角的，在Safari和Chrome下看到的是圆角+阴影的，在IE下，只是直角:)</description>
		<content:encoded><![CDATA[<p>wp的后台是使用了CSS3的圆角和阴影属性，所以在FF下看到的是圆角的，在Safari和Chrome下看到的是圆角+阴影的，在IE下，只是直角:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 过眼云烟</title>
		<link>http://wlsy.me/1318/comment-page-1/#comment-331</link>
		<dc:creator>过眼云烟</dc:creator>
		<pubDate>Tue, 10 Feb 2009 09:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.g9net.com/2009/02/07/fillet-of-page-some-thoughts-on-design.html#comment-331</guid>
		<description>其实我觉得圆角的会更好一点，方角的比较适合一些纯粹的技术型网站，更加的硬朗一些，圆角的有一点柔美的感觉。各取所需吧。</description>
		<content:encoded><![CDATA[<p>其实我觉得圆角的会更好一点，方角的比较适合一些纯粹的技术型网站，更加的硬朗一些，圆角的有一点柔美的感觉。各取所需吧。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wlsy</title>
		<link>http://wlsy.me/1318/comment-page-1/#comment-330</link>
		<dc:creator>wlsy</dc:creator>
		<pubDate>Tue, 10 Feb 2009 03:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.g9net.com/2009/02/07/fillet-of-page-some-thoughts-on-design.html#comment-330</guid>
		<description>有的来说却是是这样的，就像本站的导航一样，不过具体的问题还要具体分析，圆角有助于凸显主要内容，如果导航比较小的话，可以用小圆角装饰。个人意见哈</description>
		<content:encoded><![CDATA[<p>有的来说却是是这样的，就像本站的导航一样，不过具体的问题还要具体分析，圆角有助于凸显主要内容，如果导航比较小的话，可以用小圆角装饰。个人意见哈</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SoleilNeon</title>
		<link>http://wlsy.me/1318/comment-page-1/#comment-329</link>
		<dc:creator>SoleilNeon</dc:creator>
		<pubDate>Tue, 10 Feb 2009 01:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.g9net.com/2009/02/07/fillet-of-page-some-thoughts-on-design.html#comment-329</guid>
		<description>还是觉得直角得好看些，尤其是多个按钮并排的时候看上去更像是个整体。</description>
		<content:encoded><![CDATA[<p>还是觉得直角得好看些，尤其是多个按钮并排的时候看上去更像是个整体。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
