<?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"
	>

<channel>
	<title>10tico Creations</title>
	<atom:link href="http://10tico.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://10tico.com</link>
	<description>10tico Creations, websites, web application development based in Syracuse, NY</description>
	<pubDate>Thu, 08 Nov 2007 01:05:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Forward thinking floats</title>
		<link>http://10tico.com/2007/09/22/forward-thinking-floats/</link>
		<comments>http://10tico.com/2007/09/22/forward-thinking-floats/#comments</comments>
		<pubDate>Sat, 22 Sep 2007 15:23:26 +0000</pubDate>
		<dc:creator>marcello</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[floats]]></category>

		<guid isPermaLink="false">http://10tico.com/2007/09/22/forward-thinking-floats/</guid>
		<description><![CDATA[The clearfix issue is great to get your divs to behave properly. The one drawback is that you must insert a class=&#8221;clearfix&#8221; to every element that needs the clearfix attribute applied. This is not forward thinking since if a new method comes along then all of the markup needs to be updated to accommodate the [...]]]></description>
			<content:encoded><![CDATA[<p>The clearfix issue is great to get your divs to behave properly. The one drawback is that you must insert a class=&#8221;clearfix&#8221; to every element that needs the clearfix attribute applied. This is not forward thinking since if a new method comes along then all of the markup needs to be updated to accommodate the method. This is one extra step that is not necessary and could be fixed in a simpler way. </p>
<p>Agile Ajax has a solution from the Orbitz website that simply applied the the class/div elements to the clearfix declarations. </p>
<p><span id="more-9"></span></p>
<p>So instead of the classic clearfix (which is updated to remove IE5 Mac support).</p>
<blockquote>
<pre>
    /* float clearing for IE6 */
    * html .clearfix{
      height: 1%;
      overflow: visible;
    }

    /* float clearing for IE7 */
    *+html .clearfix{
      min-height: 1%;
    }

    /* float clearing for everyone else */
    .clearfix:after{
      clear: both;
      content: ".";
      display: block;
      height: 0;
      visibility: hidden;
    }
</pre>
</blockquote>
<p>You now simply add classes/div elements to the clearfix declarations.</p>
<blockquote>
<pre>
/* float clearing for IE6 */
* html #container,
* html .classThatNeedsToBeCleared,
* html div.anotherClassThatNeedsToBeCleared,
* html #someDiv .someClass .yetAnotherClassThatNeedsToBeCleared{
  height: 1%;
  overflow: visible;
}

/* float clearing for IE7 */
*+html #container,
*+html .classThatNeedsToBeCleared,
*+html div.anotherClassThatNeedsToBeCleared,
*+html #someDiv .someClass .yetAnotherClassThatNeedsToBeCleared{
  min-height: 1%;
}

/* float clearing for everyone else */
#container:after,
.classThatNeedsToBeCleared:after,
div.anotherClassThatNeedsToBeCleared:after,
#someDiv .someClass .yetAnotherClassThatNeedsToBeCleared:after{
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
</pre>
</blockquote>
<p>This is one of those &#8220;Why didn&#8217;t I think of that&#8221; moments.</p>
<p><a href="http://blogs.pathf.com/agileajax/2007/09/developers-note.html">Agile Ajax: Developer&#8217;s Notebook: Forward-thinking CSS float-clearing</a></p>
<p><a href="http://www.positioniseverything.net/easyclearing.html">Position is everything</a></p>
]]></content:encoded>
			<wfw:commentRss>http://10tico.com/2007/09/22/forward-thinking-floats/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JQuery UI</title>
		<link>http://10tico.com/2007/09/16/jquery-ui/</link>
		<comments>http://10tico.com/2007/09/16/jquery-ui/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 03:34:04 +0000</pubDate>
		<dc:creator>marcello</dc:creator>
		
		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://10tico.com/2007/09/16/jquery-ui/</guid>
		<description><![CDATA[I&#8217;ve been using JQuery more than any other javascript library. It seems cleaner, the code is much smaller and is easy to extend. jQuery UI is now launched.
This is the wiki overview for jQuery UI, jQuery&#8217;s visual controls. jQuery UI features a wide range of core interaction plugins as well as many UI widgets.

http://ui.jquery.com/
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using JQuery more than any other javascript library. It seems cleaner, the code is much smaller and is easy to extend. jQuery UI is now launched.</p>
<blockquote><p>This is the wiki overview for jQuery UI, jQuery&#8217;s visual controls. jQuery UI features a wide range of core interaction plugins as well as many UI widgets.
</p></blockquote>
<p><a href="http://ui.jquery.com/">http://ui.jquery.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://10tico.com/2007/09/16/jquery-ui/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Clearfix code</title>
		<link>http://10tico.com/2007/09/16/clearfix-code/</link>
		<comments>http://10tico.com/2007/09/16/clearfix-code/#comments</comments>
		<pubDate>Sun, 16 Sep 2007 23:41:08 +0000</pubDate>
		<dc:creator>marcello</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[floats]]></category>

		<guid isPermaLink="false">http://10tico.com/2007/09/16/clearfix-code/</guid>
		<description><![CDATA[This is the famous clearfix code that helps you manage float issues. 
Add class=&#8221;clearfix&#8221; to any container element that holds two items that float left and right. The problem is that most browsers will not give a height to the container element since the floated items will not be counted on as giving height. The [...]]]></description>
			<content:encoded><![CDATA[<p>This is the famous clearfix code that helps you manage float issues. </p>
<p>Add class=&#8221;clearfix&#8221; to any container element that holds two items that float left and right. The problem is that most browsers will not give a height to the container element since the floated items will not be counted on as giving height. The quick piece of code below will give height to the container element.</p>
<p><a href="http://www.webtoolkit.info/demo/css/clearfix/demo.html">Demo of the clearfix issue</a></p>
<blockquote>
<p>.clearfix:after {<br />
    content: &#8220;.&#8221;;<br />
    display: block;<br />
    clear: both;<br />
    visibility: hidden;<br />
    line-height: 0;<br />
    height: 0;<br />
}</p>
<p>.clearfix {<br />
    display: inline-block;<br />
}</p>
<p>html[xmlns] .clearfix {<br />
    display: block;<br />
}</p>
<p>* html .clearfix {<br />
    height: 1%;<br />
}
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://10tico.com/2007/09/16/clearfix-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>About Us</title>
		<link>http://10tico.com/2007/09/16/about-us/</link>
		<comments>http://10tico.com/2007/09/16/about-us/#comments</comments>
		<pubDate>Sun, 16 Sep 2007 20:27:40 +0000</pubDate>
		<dc:creator>marcello</dc:creator>
		
		<category><![CDATA[about 10tico]]></category>

		<guid isPermaLink="false">http://10tico.com/2007/09/16/about-us/</guid>
		<description><![CDATA[10tico Creations is a Web Development Company based in Syracuse, NY. 10tico Creations is owned by Marcello Prattico.
10tico  Creations can help any sized business in creating custom web sites or applications. Our expertise ranges from very slick front end development using Javascript, XHTML/CSS Layout and Flash.
10tico Creations develops websites with PHP, Coldfusion or anything [...]]]></description>
			<content:encoded><![CDATA[<p>10tico Creations is a Web Development Company based in Syracuse, NY. 10tico Creations is owned by Marcello Prattico.</p>
<p>10tico  Creations can help any sized business in creating custom web sites or applications. Our expertise ranges from very slick front end development using Javascript, XHTML/CSS Layout and Flash.</p>
<p>10tico Creations develops websites with PHP, Coldfusion or anything other language that fits your need.</p>
<p>Database design and development is  critical when developing a custom web application or website. We work with MySQL, Postgres, SQL Server and Oracle.</p>
]]></content:encoded>
			<wfw:commentRss>http://10tico.com/2007/09/16/about-us/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
