<?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: What I want from CSS 3, part 1</title>
	<atom:link href="http://www.brucelawson.co.uk/2005/what-i-want-from-css-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brucelawson.co.uk/2005/what-i-want-from-css-3/</link>
	<description></description>
	<lastBuildDate>Fri, 10 May 2013 14:03:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Ant</title>
		<link>http://www.brucelawson.co.uk/2005/what-i-want-from-css-3/comment-page-1/#comment-637424</link>
		<dc:creator>Ant</dc:creator>
		<pubDate>Fri, 16 Oct 2009 20:20:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucelawson.co.uk/index.php/2005/what-i-want-from-css-3/#comment-637424</guid>
		<description><![CDATA[I want @enchance @-rule. It would be something like this:

@enchance (text-shadow:0 0 1px rgba(120,120,120,.5){
   
   h1{
      color:transparent;
      text-shadow:0 0 1px rgba(120,120,120,.5)
   }
   
}

h1{
   color:gray;
}

So if browser support text-shadow AND rgba, it will add shadow to h1 and make it transparent, otherwise, it will be gray (so text would become readable on older browsers).]]></description>
		<content:encoded><![CDATA[<p>I want @enchance @-rule. It would be something like this:</p>
<p>@enchance (text-shadow:0 0 1px rgba(120,120,120,.5){</p>
<p>   h1{<br />
      color:transparent;<br />
      text-shadow:0 0 1px rgba(120,120,120,.5)<br />
   }</p>
<p>}</p>
<p>h1{<br />
   color:gray;<br />
}</p>
<p>So if browser support text-shadow AND rgba, it will add shadow to h1 and make it transparent, otherwise, it will be gray (so text would become readable on older browsers).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://www.brucelawson.co.uk/2005/what-i-want-from-css-3/comment-page-1/#comment-573991</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Mon, 17 Nov 2008 19:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucelawson.co.uk/index.php/2005/what-i-want-from-css-3/#comment-573991</guid>
		<description><![CDATA[proposals to be added to the css variables described at: http://www.css3.info/summary-of-the-two-current-css-constants-proposals/

proposal 1

To exist a new kind of variable - image variable defined as follows:

@define imagvars{ imagevar1 { rect(20,30,40,50) url(http://www.example.com/images.image.jpg)} , imagevar2 { rect(60,70,80,90) url(http://www.example.com/images.image.jpg)}} 

where rect(60,70,80,90) is the square that defines the image on the sprite (sprite - an image that contains a group of images)

after that we can apply the slice of the image as follows:


background-image:var(imagevar1);

is instead of the proposal to add background-image-crop to css3(i mean to exist a modality to crop images for background as well, similarly to clip:rect() property )

********************************************************************

proposal 2

inheritance for style-sets

instead of @define style-sets { noteBox { border-style: solid; padding: 1em; border-radius: 1em; } quoteBox { margin: 1em; } }


for applying inheritance will be redefine as follows

@redefine style-sets { noteBox2{ noteBox { border-style: dashed; }}}

will have the same result as defining a new style as follows
@define style-sets { noteBox2 { border-style: dashed; padding: 1em; border-radius: 1em; }}]]></description>
		<content:encoded><![CDATA[<p>proposals to be added to the css variables described at: <a href="http://www.css3.info/summary-of-the-two-current-css-constants-proposals/" rel="nofollow">http://www.css3.info/summary-of-the-two-current-css-constants-proposals/</a></p>
<p>proposal 1</p>
<p>To exist a new kind of variable &#8211; image variable defined as follows:</p>
<p>@define imagvars{ imagevar1 { rect(20,30,40,50) url(<a href="http://www.example.com/images.image.jpg" rel="nofollow">http://www.example.com/images.image.jpg</a>)} , imagevar2 { rect(60,70,80,90) url(<a href="http://www.example.com/images.image.jpg" rel="nofollow">http://www.example.com/images.image.jpg</a>)}} </p>
<p>where rect(60,70,80,90) is the square that defines the image on the sprite (sprite &#8211; an image that contains a group of images)</p>
<p>after that we can apply the slice of the image as follows:</p>
<p>background-image:var(imagevar1);</p>
<p>is instead of the proposal to add background-image-crop to css3(i mean to exist a modality to crop images for background as well, similarly to clip:rect() property )</p>
<p>********************************************************************</p>
<p>proposal 2</p>
<p>inheritance for style-sets</p>
<p>instead of @define style-sets { noteBox { border-style: solid; padding: 1em; border-radius: 1em; } quoteBox { margin: 1em; } }</p>
<p>for applying inheritance will be redefine as follows</p>
<p>@redefine style-sets { noteBox2{ noteBox { border-style: dashed; }}}</p>
<p>will have the same result as defining a new style as follows<br />
@define style-sets { noteBox2 { border-style: dashed; padding: 1em; border-radius: 1em; }}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Bloom</title>
		<link>http://www.brucelawson.co.uk/2005/what-i-want-from-css-3/comment-page-1/#comment-19933</link>
		<dc:creator>Chris Bloom</dc:creator>
		<pubDate>Fri, 21 Jul 2006 19:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucelawson.co.uk/index.php/2005/what-i-want-from-css-3/#comment-19933</guid>
		<description><![CDATA[@Chris: I was thinking the same thing about using a negative text-indent on the first line. However, any lines after a hard-break ([br]) would be indented along with the soft-wrapped lines. Using p tags instead of br tags would work only if the p tags were styled to not have any top or bottom margins, but if the reader was using a non-visual browser the poem wouldn&#039;t &quot;read&quot; properly.]]></description>
		<content:encoded><![CDATA[<p>@Chris: I was thinking the same thing about using a negative text-indent on the first line. However, any lines after a hard-break ([br]) would be indented along with the soft-wrapped lines. Using p tags instead of br tags would work only if the p tags were styled to not have any top or bottom margins, but if the reader was using a non-visual browser the poem wouldn&#8217;t &#8220;read&#8221; properly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Maurice</title>
		<link>http://www.brucelawson.co.uk/2005/what-i-want-from-css-3/comment-page-1/#comment-3232</link>
		<dc:creator>Chris Maurice</dc:creator>
		<pubDate>Fri, 03 Mar 2006 21:06:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucelawson.co.uk/index.php/2005/what-i-want-from-css-3/#comment-3232</guid>
		<description><![CDATA[While it is a bit distasteful, you should be able to implement this by having each line in a block and then setting the indent-related CSS properties on that block to indent any text that is given a soft line-break.]]></description>
		<content:encoded><![CDATA[<p>While it is a bit distasteful, you should be able to implement this by having each line in a block and then setting the indent-related CSS properties on that block to indent any text that is given a soft line-break.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Clark</title>
		<link>http://www.brucelawson.co.uk/2005/what-i-want-from-css-3/comment-page-1/#comment-1117</link>
		<dc:creator>Joe Clark</dc:creator>
		<pubDate>Thu, 22 Dec 2005 20:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucelawson.co.uk/index.php/2005/what-i-want-from-css-3/#comment-1117</guid>
		<description><![CDATA[Lobby the HTML and CSS Working Groups. That&#039;ll be fun.]]></description>
		<content:encoded><![CDATA[<p>Lobby the HTML and CSS Working Groups. That&#8217;ll be fun.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://www.brucelawson.co.uk/2005/what-i-want-from-css-3/comment-page-1/#comment-1115</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Thu, 22 Dec 2005 16:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucelawson.co.uk/index.php/2005/what-i-want-from-css-3/#comment-1115</guid>
		<description><![CDATA[We&#039;ve used TEI-Lite to mark up historical correspondence. It has also been used to mark up poetry so maybe something can be done using TEI elements inside XHTML documents. After all, there&#039;s nothing wrong with using elements from more than one namespace in an XML document, as long as your browser or reader or whatever can understand them. 

Anyway, here&#039;s the Wikipedia page for TEI &lt;a href=&quot;http://en.wikipedia.org/wiki/Text_Encoding_Initiative&quot; rel=&quot;nofollow&quot;&gt;http://en.wikipedia.org/wiki/Text_Encoding_Initiative&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>We&#8217;ve used TEI-Lite to mark up historical correspondence. It has also been used to mark up poetry so maybe something can be done using TEI elements inside XHTML documents. After all, there&#8217;s nothing wrong with using elements from more than one namespace in an XML document, as long as your browser or reader or whatever can understand them. </p>
<p>Anyway, here&#8217;s the Wikipedia page for TEI <a href="http://en.wikipedia.org/wiki/Text_Encoding_Initiative" rel="nofollow">http://en.wikipedia.org/wiki/Text_Encoding_Initiative</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
