<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/html</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 19 Jun 2013 08:32:09 GMT</pubDate>
<item>
<title>(HTML) Alternating column colors in HTML tables - COBOLdinosaur</title>
<link>http://snipplr.com/view/71306/alternating-column-colors-in-html-tables/</link>
<description><![CDATA[ <p>The colgroup and col structure is like a directive that specifies table formatting outside of the normal flow. Notice that the col tags do not get closed in HTML5, and the cascade is irregular. Normally the cascade applies to children, but the rows and cells in the table are not children or grandchildren of the col or colgroup. The relationship is more like stepchildren. Because of the irregular relationship, the CSS specificity appears to be quirky. Its not really, but it is not always as expected. To insure the the correct application of both the colgroup rules and the other rules being applied to the tr and td tags the colgroup rules should be applied in line, or be the final rule in the style entries.</p> ]]></description>
<pubDate>Sun, 26 May 2013 01:59:56 GMT</pubDate>
<guid>http://snipplr.com/view/71306/alternating-column-colors-in-html-tables/</guid>
</item>
<item>
<title>(HTML) Test Rendering Arimo - Bold - infolock</title>
<link>http://snipplr.com/view/71278/test-rendering-arimo--bold/</link>
<description><![CDATA[ <p>Just a test...</p> ]]></description>
<pubDate>Thu, 23 May 2013 14:34:44 GMT</pubDate>
<guid>http://snipplr.com/view/71278/test-rendering-arimo--bold/</guid>
</item>
<item>
<title>(CSS) Subtle Recessed Divider Line - nshakin</title>
<link>http://snipplr.com/view/71245/subtle-recessed-divider-line/</link>
<description><![CDATA[ <p>Create a subtle "recessed" looking divider line.  The example restyles the  tag but it can applied to anything.</p> ]]></description>
<pubDate>Tue, 21 May 2013 05:58:38 GMT</pubDate>
<guid>http://snipplr.com/view/71245/subtle-recessed-divider-line/</guid>
</item>
<item>
<title>(HTML) Captions For Lists and Images - COBOLdinosaur</title>
<link>http://snipplr.com/view/71211/captions-for-lists-and-images/</link>
<description><![CDATA[ <p>One of the limits of using lists (ordered and unordered) is that they have no provision for a heading. You can do something like: This is a Title etc... but it is invalid because the list containers can only contain List Items. One way commonly used to put a heading on a list is to put a paragraph or div ahead of the list. It is messy and ugly, but it validates.

The problem with that solution is that the elements are not bound to each other and therefore it can break unless you make it even uglier by putting a common wrapper around both elements, and then you have extra linefeeds to deal with.</p> ]]></description>
<pubDate>Fri, 17 May 2013 03:58:58 GMT</pubDate>
<guid>http://snipplr.com/view/71211/captions-for-lists-and-images/</guid>
</item>
<item>
<title>(jQuery) add target blank - thesmu</title>
<link>http://snipplr.com/view/71195/add-target-blank/</link>
<description><![CDATA[ <p>add target blank</p> ]]></description>
<pubDate>Thu, 16 May 2013 00:27:41 GMT</pubDate>
<guid>http://snipplr.com/view/71195/add-target-blank/</guid>
</item>
<item>
<title>(JavaScript) Animating Shapes - COBOLdinosaur</title>
<link>http://snipplr.com/view/71184/animating-shapes/</link>
<description><![CDATA[ <p>Changes shape back and forth from a round element to a square element.</p> ]]></description>
<pubDate>Wed, 15 May 2013 05:51:36 GMT</pubDate>
<guid>http://snipplr.com/view/71184/animating-shapes/</guid>
</item>
<item>
<title>(HTML) HTML5 Starter Page (Based on Skeleton Boilerplate) - lowko0</title>
<link>http://snipplr.com/view/70703/html5-starter-page-based-on-skeleton-boilerplate/</link>
<description><![CDATA[ <p>This is a HTML5 Starter Page based on Skeleton Boilerplate. It has been made with the latest standards in web development. I made it cleaner than the original one, fixed some mistakes and added extra iOS icon resolutions, normalize.css and Google Analytics support.

&amp;nbsp;

The css files used should still be the ones from Skeleton, I just changed the name to more readable ones. The equivalences are:

&amp;nbsp;

global.css = base.css (https://raw.github.com/dhgamache/Skeleton/master/stylesheets/base.css)
grid.css = skeleton.css (https://raw.github.com/dhgamache/Skeleton/master/stylesheets/skeleton.css)
layout.css (https://raw.github.com/dhgamache/Skeleton/master/stylesheets/layout.css)

&amp;nbsp;

Also here's a link for CSS Normalizer:

&amp;nbsp;

normalize.css (https://raw.github.com/necolas/normalize.css/master/normalize.css)

&amp;nbsp;&amp;nbsp;

Use at your own will.
Cheers, Luiz.</p> ]]></description>
<pubDate>Mon, 08 Apr 2013 09:52:30 GMT</pubDate>
<guid>http://snipplr.com/view/70703/html5-starter-page-based-on-skeleton-boilerplate/</guid>
</item>
<item>
<title>(CSS) horizontal tabs in html with css - codingforever99</title>
<link>http://snipplr.com/view/70624/horizontal-tabs-in-html-with-css/</link>
<description><![CDATA[ <p>designing a simple horizontal tab menu by using ul and il elements with css.</p> ]]></description>
<pubDate>Mon, 01 Apr 2013 11:13:59 GMT</pubDate>
<guid>http://snipplr.com/view/70624/horizontal-tabs-in-html-with-css/</guid>
</item>
<item>
<title>(CSS) Image Sprites - How to get portion of an image - codingforever99</title>
<link>http://snipplr.com/view/70588/image-sprites--how-to-get-portion-of-an-image/</link>
<description><![CDATA[ <p>One of the great methods to load and work with icons in web pages is to load one image that is a collection of several icons and use any icon as needed, that reduces the number of server request and save bandwidth.</p> ]]></description>
<pubDate>Thu, 28 Mar 2013 19:26:58 GMT</pubDate>
<guid>http://snipplr.com/view/70588/image-sprites--how-to-get-portion-of-an-image/</guid>
</item>
<item>
<title>(HTML) HTML Starter Template - upmedia</title>
<link>http://snipplr.com/view/70569/html-starter-template/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 27 Mar 2013 20:38:53 GMT</pubDate>
<guid>http://snipplr.com/view/70569/html-starter-template/</guid>
</item>
<item>
<title>(HTML) iPhone Calling and Texting Links - haydin</title>
<link>http://snipplr.com/view/70488/iphone-calling-and-texting-links/</link>
<description><![CDATA[ <p>This is the calling one (probably more useful if the clickable text is words, as the iPhone auto-detects phone numbers and does this automatically)
This is the SMS one, which overrides the default calling behavior (ex :  Giocare Gioco 
Not sure what other things these links might work on... Might be a little dangerous as having non-standard links that don't work or bring up errors is kinda bad UX. Best for mobile-only sites. If someone know if this works on Android/Blackberry/Other Mobile, comment below.</p> ]]></description>
<pubDate>Wed, 20 Mar 2013 20:27:55 GMT</pubDate>
<guid>http://snipplr.com/view/70488/iphone-calling-and-texting-links/</guid>
</item>
<item>
<title>(HTML) Comments in HTML - haydin</title>
<link>http://snipplr.com/view/70486/comments-in-html/</link>
<description><![CDATA[ <p>The  stuff is the HTML comment. It is a way to add notes into the code which will not display when the HTML is rendered by the browser. Giochi Online 123  In the example above, to signify which opening div tag the closing tag was actually closing.</p> ]]></description>
<pubDate>Wed, 20 Mar 2013 20:15:32 GMT</pubDate>
<guid>http://snipplr.com/view/70486/comments-in-html/</guid>
</item>
<item>
<title>(HTML) Jaidee HTML Framework - kanin2604</title>
<link>http://snipplr.com/view/70370/jaidee-html-framework/</link>
<description><![CDATA[ <p>Jaidee Framework is Graceful and powerful HTML &amp; CSS Framework for building flexible and responsive website and mobile app development.</p> ]]></description>
<pubDate>Tue, 12 Mar 2013 23:06:13 GMT</pubDate>
<guid>http://snipplr.com/view/70370/jaidee-html-framework/</guid>
</item>
<item>
<title>(HTML) Multiple File Input in HTML - apphp-snippets</title>
<link>http://snipplr.com/view/70354/multiple-file-input-in-html/</link>
<description><![CDATA[ <p>File inputs can have an attribute of "multiple" which then allows multiple files to be selected in the file section dialog box. Currently only Firefox 3.6+ and WebKit browsers are supporting it.</p> ]]></description>
<pubDate>Mon, 11 Mar 2013 17:44:09 GMT</pubDate>
<guid>http://snipplr.com/view/70354/multiple-file-input-in-html/</guid>
</item>
<item>
<title>(HTML) Media Code in HTML5 - apphp-snippets</title>
<link>http://snipplr.com/view/70353/media-code-in-html5/</link>
<description><![CDATA[ <p>This example is a basic design structure for loading multiple video and audio formats for universal work of media content on your page.</p> ]]></description>
<pubDate>Mon, 11 Mar 2013 17:43:11 GMT</pubDate>
<guid>http://snipplr.com/view/70353/media-code-in-html5/</guid>
</item>
<item>
<title>(Haskell) Page Structure in HTML5 - apphp-snippets</title>
<link>http://snipplr.com/view/70352/page-structure-in-html5/</link>
<description><![CDATA[ <p>This example is a basic HTML5 page structure that you can use for developing of your HTML5 website layout.</p> ]]></description>
<pubDate>Mon, 11 Mar 2013 17:42:07 GMT</pubDate>
<guid>http://snipplr.com/view/70352/page-structure-in-html5/</guid>
</item>
<item>
<title>(HTML) Meta Tag Refresh in HTML - apphp-snippets</title>
<link>http://snipplr.com/view/70346/meta-tag-refresh-in-html/</link>
<description><![CDATA[ <p>This definition allows redirection to the provided URL in 5 seconds. You may set it to 0 if you need an immediate redirect.</p> ]]></description>
<pubDate>Sun, 10 Mar 2013 19:34:50 GMT</pubDate>
<guid>http://snipplr.com/view/70346/meta-tag-refresh-in-html/</guid>
</item>
<item>
<title>(HTML) Form Trick: Disappearing Text - thesmu</title>
<link>http://snipplr.com/view/70289/form-trick-disappearing-text/</link>
<description><![CDATA[ <p>Form Trick: Disappearing Text</p> ]]></description>
<pubDate>Wed, 06 Mar 2013 22:06:25 GMT</pubDate>
<guid>http://snipplr.com/view/70289/form-trick-disappearing-text/</guid>
</item>
<item>
<title>(HTML) HTML: List of countries for a Dropdown menu - chrisaiv</title>
<link>http://snipplr.com/view/70076/html-list-of-countries-for-a-dropdown-menu/</link>
<description><![CDATA[ <p>Country listings</p> ]]></description>
<pubDate>Sun, 24 Feb 2013 06:49:15 GMT</pubDate>
<guid>http://snipplr.com/view/70076/html-list-of-countries-for-a-dropdown-menu/</guid>
</item>
<item>
<title>(Groovy) MarkupBuilder  HMTL tag - alces</title>
<link>http://snipplr.com/view/69863/markupbuilder--hmtl-tag/</link>
<description><![CDATA[ <p>Little hack for correct-working  tag in groovy.xml.MarkupBuilder
Tested in Firefox 10.0, Opera 12.13, Chromium 22.0</p> ]]></description>
<pubDate>Fri, 08 Feb 2013 18:43:03 GMT</pubDate>
<guid>http://snipplr.com/view/69863/markupbuilder--hmtl-tag/</guid>
</item>
</channel>
</rss>