<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 18:06:46 +0000</lastBuildDate>
    <item>
      <title>(Java) Android: Draw text to dynamically sized bitmap - cbruegg</title>
      <link>https://snipplr.com/view/73714/android-draw-text-to-dynamically-sized-bitmap</link>
      <description>&lt;p&gt;This method draws a specified string to a Bitmap with the desired text width and text size.&lt;/p&gt;</description>
      <pubDate>Thu, 20 Feb 2014 22:13:11 UTC</pubDate>
      <guid>https://snipplr.com/view/73714/android-draw-text-to-dynamically-sized-bitmap</guid>
    </item>
    <item>
      <title>(SASS) Grid building mixin. - adambuczek</title>
      <link>https://snipplr.com/view/72485/grid-building-mixin</link>
      <description>&lt;p&gt;Mixin sets element width without clogging your markup. Set layout width, number of columns and gutter width.&#13;
I use it to make sites responsive when if don't need to change the amount of columns.&#13;
eg. 1218px, 978px and 768px grids.&#13;
&#13;
Usage:&#13;
&#13;
Full width&#13;
&#13;
`.hero {&#13;
    text-align: center;&#13;
    @include grid(12);&#13;
  }`&#13;
&#13;
Two columns&#13;
&#13;
`article {&#13;
    @include grid(6); &#13;
  }`&#13;
`article:nth-child(2n) { //for two column layout&#13;
    @include clearfix;  //html5 boilerplate clearfix&#13;
  }`&#13;
&#13;
Three columns&#13;
&#13;
`a {&#13;
    @include grid(4);&#13;
    text-align: center;&#13;
    img, span {&#13;
      margin: 0 auto;&#13;
      display: block;&#13;
    }&#13;
    img {&#13;
      margin-top: rhythm(2);&#13;
    }&#13;
    span:nth-child(2) {&#13;
      margin-top: rhythm(1);&#13;
    }&#13;
  }`&#13;
&#13;
`a:nth-child(3n) {&#13;
 @include clearfix;&#13;
 }`&lt;/p&gt;</description>
      <pubDate>Sat, 28 Sep 2013 05:12:14 UTC</pubDate>
      <guid>https://snipplr.com/view/72485/grid-building-mixin</guid>
    </item>
    <item>
      <title>(CSS) Facebook Like Box CSS Layout Design - jntu_gnec</title>
      <link>https://snipplr.com/view/71048/facebook-like-box-css-layout-design</link>
      <description>&lt;p&gt;Demo Image http://i.imgur.com/f7o3Flr.png&lt;/p&gt;</description>
      <pubDate>Mon, 06 May 2013 01:15:01 UTC</pubDate>
      <guid>https://snipplr.com/view/71048/facebook-like-box-css-layout-design</guid>
    </item>
    <item>
      <title>(CSS) Nexus Theme Relative page layout - vanseijen</title>
      <link>https://snipplr.com/view/67892/nexus-theme-relative-page-layout</link>
      <description>&lt;p&gt;The relative "em" version of the fixed page layout of the Nexus core theme&lt;/p&gt;</description>
      <pubDate>Wed, 24 Oct 2012 00:33:46 UTC</pubDate>
      <guid>https://snipplr.com/view/67892/nexus-theme-relative-page-layout</guid>
    </item>
    <item>
      <title>(CSS) Nexus Theme fixed page layout - vanseijen</title>
      <link>https://snipplr.com/view/67886/nexus-theme-fixed-page-layout</link>
      <description>&lt;p&gt;Nexus Theme fixed page layout&lt;/p&gt;</description>
      <pubDate>Tue, 23 Oct 2012 20:26:33 UTC</pubDate>
      <guid>https://snipplr.com/view/67886/nexus-theme-fixed-page-layout</guid>
    </item>
    <item>
      <title>(Rails) Render layout false - CrescentMoon</title>
      <link>https://snipplr.com/view/64800/render-layout-false</link>
      <description>&lt;p&gt;render :layout =&gt; false not work&lt;/p&gt;</description>
      <pubDate>Sat, 05 May 2012 20:38:21 UTC</pubDate>
      <guid>https://snipplr.com/view/64800/render-layout-false</guid>
    </item>
    <item>
      <title>(PHP) Log down all loaded layout handles in Magento on each request - zoranmk</title>
      <link>https://snipplr.com/view/61215/log-down-all-loaded-layout-handles-in-magento-on-each-request</link>
      <description>&lt;p&gt;Snippet for getting the layout handles in Magento on each request, helpful for front-end developers.&lt;/p&gt;</description>
      <pubDate>Sat, 26 Nov 2011 07:14:15 UTC</pubDate>
      <guid>https://snipplr.com/view/61215/log-down-all-loaded-layout-handles-in-magento-on-each-request</guid>
    </item>
    <item>
      <title>(PHP) How to log all xml layout updates in Magento on each request - zoranmk</title>
      <link>https://snipplr.com/view/61214/how-to-log-all-xml-layout-updates-in-magento-on-each-request</link>
      <description>&lt;p&gt;Snippet for logging down all of the layout updates loaded on each request in Magento.&lt;/p&gt;</description>
      <pubDate>Sat, 26 Nov 2011 07:09:09 UTC</pubDate>
      <guid>https://snipplr.com/view/61214/how-to-log-all-xml-layout-updates-in-magento-on-each-request</guid>
    </item>
    <item>
      <title>(JavaScript) Flexible Site Layout with Resize Detection - FatFolderDesigner</title>
      <link>https://snipplr.com/view/59044/flexible-site-layout-with-resize-detection</link>
      <description>&lt;p&gt;This bit of jquery will take whatever you give it in the selector (which should be a valid jquery selector of any kind) and add or remove additional classas as appropriate based on width. &#13;
&#13;
The width and style names are all determined by the last if statement and can easily be changes. The defaults are for sizes 320px or less, 321px to 768px, 768px to 1024px, and greater than 1024px to be given the styles tiny_screen, small_screen, medium_screen, and large_screen respectively.&#13;
&#13;
More information plus some additional tips at the link, if you have any questions/comments/criticisms post them below, as well as if you use this in a project or improve upon it and Iâ€™ll update with that information included as well.&lt;/p&gt;</description>
      <pubDate>Sat, 24 Sep 2011 07:01:17 UTC</pubDate>
      <guid>https://snipplr.com/view/59044/flexible-site-layout-with-resize-detection</guid>
    </item>
    <item>
      <title>(CSS) Horizontal + Vertical Centered Layout - cesarkohl</title>
      <link>https://snipplr.com/view/58652/horizontal--vertical-centered-layout</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 14 Sep 2011 00:18:27 UTC</pubDate>
      <guid>https://snipplr.com/view/58652/horizontal--vertical-centered-layout</guid>
    </item>
    <item>
      <title>(CSS) CSS Layouts - Percent Based - digitalzoomstudio</title>
      <link>https://snipplr.com/view/57740/css-layouts--percent-based</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 11 Aug 2011 07:03:32 UTC</pubDate>
      <guid>https://snipplr.com/view/57740/css-layouts--percent-based</guid>
    </item>
    <item>
      <title>(PHP) Magento - Display Layout Handles - JustMadMike</title>
      <link>https://snipplr.com/view/57582/magento--display-layout-handles</link>
      <description>&lt;p&gt;Prints layout Handles.&lt;/p&gt;</description>
      <pubDate>Wed, 03 Aug 2011 23:02:54 UTC</pubDate>
      <guid>https://snipplr.com/view/57582/magento--display-layout-handles</guid>
    </item>
    <item>
      <title>(HTML) HTML5 Basic Page Template - sethetter</title>
      <link>https://snipplr.com/view/51878/html5-basic-page-template</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 10 Apr 2011 04:56:29 UTC</pubDate>
      <guid>https://snipplr.com/view/51878/html5-basic-page-template</guid>
    </item>
    <item>
      <title>(HTML) Full page layout % and px - gdesjardins</title>
      <link>https://snipplr.com/view/50177/full-page-layout--and-px</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 07 Mar 2011 08:48:28 UTC</pubDate>
      <guid>https://snipplr.com/view/50177/full-page-layout--and-px</guid>
    </item>
    <item>
      <title>(XML) Android: Layout with a vertically-centered widget - BenClayton</title>
      <link>https://snipplr.com/view/49747/android-layout-with-a-verticallycentered-widget</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 27 Feb 2011 09:29:39 UTC</pubDate>
      <guid>https://snipplr.com/view/49747/android-layout-with-a-verticallycentered-widget</guid>
    </item>
    <item>
      <title>(Java) View with textbox and button. - hongster</title>
      <link>https://snipplr.com/view/47862/view-with-textbox-and-button</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 26 Jan 2011 01:45:10 UTC</pubDate>
      <guid>https://snipplr.com/view/47862/view-with-textbox-and-button</guid>
    </item>
    <item>
      <title>(PHP) CakePHP admin layout for admin routing - LennieZ</title>
      <link>https://snipplr.com/view/45163/cakephp-admin-layout-for-admin-routing</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 02 Dec 2010 21:22:40 UTC</pubDate>
      <guid>https://snipplr.com/view/45163/cakephp-admin-layout-for-admin-routing</guid>
    </item>
    <item>
      <title>(PHP) Zend Framework: Disable Layout and View - for AJAX - yurivecchi</title>
      <link>https://snipplr.com/view/44731/zend-framework-disable-layout-and-view--for-ajax</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 23 Nov 2010 23:26:31 UTC</pubDate>
      <guid>https://snipplr.com/view/44731/zend-framework-disable-layout-and-view--for-ajax</guid>
    </item>
    <item>
      <title>(HTML) Sticky footer HTML - Eystein</title>
      <link>https://snipplr.com/view/40589/sticky-footer-html</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 16 Sep 2010 17:41:33 UTC</pubDate>
      <guid>https://snipplr.com/view/40589/sticky-footer-html</guid>
    </item>
    <item>
      <title>(CSS) Sticky footer CSS - Eystein</title>
      <link>https://snipplr.com/view/40585/sticky-footer-css</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 16 Sep 2010 17:40:14 UTC</pubDate>
      <guid>https://snipplr.com/view/40585/sticky-footer-css</guid>
    </item>
    <item>
      <title>(XML) Magento: Unset XML Block - Groove</title>
      <link>https://snipplr.com/view/39974/magento-unset-xml-block</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 04 Sep 2010 00:35:18 UTC</pubDate>
      <guid>https://snipplr.com/view/39974/magento-unset-xml-block</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Simple Grid Layout - adamcoulombe</title>
      <link>https://snipplr.com/view/38396/as3-simple-grid-layout</link>
      <description>&lt;p&gt;Simple grid layout technique in actionscript 3. Check out the demo and more details at http://adamcoulombe.info/lab/as3/gridlayout.html&lt;/p&gt;</description>
      <pubDate>Thu, 05 Aug 2010 00:07:44 UTC</pubDate>
      <guid>https://snipplr.com/view/38396/as3-simple-grid-layout</guid>
    </item>
    <item>
      <title>(PHP) Disable view and layout in Zend Framework - jdstraughan</title>
      <link>https://snipplr.com/view/36507/disable-view-and-layout-in-zend-framework</link>
      <description>&lt;p&gt;Use this to disable view and layout in Zend Framework controller action&lt;/p&gt;</description>
      <pubDate>Wed, 30 Jun 2010 07:51:04 UTC</pubDate>
      <guid>https://snipplr.com/view/36507/disable-view-and-layout-in-zend-framework</guid>
    </item>
    <item>
      <title>(JavaScript) Modular grid in bookmarklet - kossmoss</title>
      <link>https://snipplr.com/view/35204/modular-grid-in-bookmarklet</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 25 May 2010 22:03:29 UTC</pubDate>
      <guid>https://snipplr.com/view/35204/modular-grid-in-bookmarklet</guid>
    </item>
    <item>
      <title>(ActionScript 3) Detecting when text has run into the end of the ContainerController in a TextFlow object - LeeProbert</title>
      <link>https://snipplr.com/view/31906/detecting-when-text-has-run-into-the-end-of-the-containercontroller-in-a-textflow-object</link>
      <description>&lt;p&gt;This snippet shows how you can detect when a FlowElement that has been added to a TextFlow object (Text Layout Framework) has run to the end of the container that is flowing into. You may have linked containers that you are flowing a load of lorem ipsum into for a mock up and you want the containers to be full of text. You will need to detect when the text has reached the end otherwise the flow will continue but not be visible.&lt;/p&gt;</description>
      <pubDate>Thu, 15 Apr 2010 03:18:25 UTC</pubDate>
      <guid>https://snipplr.com/view/31906/detecting-when-text-has-run-into-the-end-of-the-containercontroller-in-a-textflow-object</guid>
    </item>
    <item>
      <title>(ActionScript 3) Detecting when text has run into the end of the ContainerController in a TextFlow object - LeeProbert</title>
      <link>https://snipplr.com/view/31905/detecting-when-text-has-run-into-the-end-of-the-containercontroller-in-a-textflow-object</link>
      <description>&lt;p&gt;This snippet shows how you can detect when a FlowElement that has been added to a TextFlow object (Text Layout Framework) has run to the end of the container that is flowing into. You may have linked containers that you are flowing a load of lorem ipsum into for a mock up and you want the containers to be full of text. You will need to detect when the text has reached the end otherwise the flow will continue but not be visible.&lt;/p&gt;</description>
      <pubDate>Thu, 15 Apr 2010 03:18:24 UTC</pubDate>
      <guid>https://snipplr.com/view/31905/detecting-when-text-has-run-into-the-end-of-the-containercontroller-in-a-textflow-object</guid>
    </item>
    <item>
      <title>(ActionScript 3) Finding the position of an element within a TextFlow - LeeProbert</title>
      <link>https://snipplr.com/view/30200/finding-the-position-of-an-element-within-a-textflow</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 24 Mar 2010 05:37:14 UTC</pubDate>
      <guid>https://snipplr.com/view/30200/finding-the-position-of-an-element-within-a-textflow</guid>
    </item>
    <item>
      <title>(ActionScript 3) Creating a TextFlow Configuration object - LeeProbert</title>
      <link>https://snipplr.com/view/30198/creating-a-textflow-configuration-object</link>
      <description>&lt;p&gt;The FontsManager class has embedded fonts in it. This is not a TLF class.&lt;/p&gt;</description>
      <pubDate>Wed, 24 Mar 2010 05:33:42 UTC</pubDate>
      <guid>https://snipplr.com/view/30198/creating-a-textflow-configuration-object</guid>
    </item>
    <item>
      <title>(jQuery) Wrapping all images - wilburhimself</title>
      <link>https://snipplr.com/view/25428/wrapping-all-images</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 25 Dec 2009 18:44:44 UTC</pubDate>
      <guid>https://snipplr.com/view/25428/wrapping-all-images</guid>
    </item>
    <item>
      <title>(CSS) CSS3 Box Shadow - crs</title>
      <link>https://snipplr.com/view/24904/css3-box-shadow</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 16 Dec 2009 09:13:52 UTC</pubDate>
      <guid>https://snipplr.com/view/24904/css3-box-shadow</guid>
    </item>
    <item>
      <title>(XHTML) 2 Col + Menu (Simple Structure) - koo23</title>
      <link>https://snipplr.com/view/20918/2-col--menu-simple-structure</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 09 Oct 2009 23:26:23 UTC</pubDate>
      <guid>https://snipplr.com/view/20918/2-col--menu-simple-structure</guid>
    </item>
    <item>
      <title>(XML) magento display static blocks with custom layout update - nico65</title>
      <link>https://snipplr.com/view/19549/magento-display-static-blocks-with-custom-layout-update</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 11 Sep 2009 10:23:57 UTC</pubDate>
      <guid>https://snipplr.com/view/19549/magento-display-static-blocks-with-custom-layout-update</guid>
    </item>
    <item>
      <title>(CSS) CSS Horizontally centered body - PeteW</title>
      <link>https://snipplr.com/view/19388/css-horizontally-centered-body</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 08 Sep 2009 09:10:45 UTC</pubDate>
      <guid>https://snipplr.com/view/19388/css-horizontally-centered-body</guid>
    </item>
    <item>
      <title>(PHP) Simple class layout template. - StrawMan</title>
      <link>https://snipplr.com/view/18838/simple-class-layout-template</link>
      <description>&lt;p&gt;A simple class layout template that I always use to get me started.&#13;
Nothing fancy. Just your basic structure.&lt;/p&gt;</description>
      <pubDate>Tue, 25 Aug 2009 20:15:33 UTC</pubDate>
      <guid>https://snipplr.com/view/18838/simple-class-layout-template</guid>
    </item>
    <item>
      <title>(Rails) Remove Layouts from Ajax Requests - deschism</title>
      <link>https://snipplr.com/view/16847/remove-layouts-from-ajax-requests</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 10 Jul 2009 12:33:08 UTC</pubDate>
      <guid>https://snipplr.com/view/16847/remove-layouts-from-ajax-requests</guid>
    </item>
    <item>
      <title>(CSS) Show all blocs of a page - HubertGaulin</title>
      <link>https://snipplr.com/view/16529/show-all-blocs-of-a-page</link>
      <description>&lt;p&gt;Great to see exactly the position of all the blocs in a page.&#13;
&#13;
Thanks to Chris Coyier for this tip.&lt;/p&gt;</description>
      <pubDate>Tue, 30 Jun 2009 17:09:57 UTC</pubDate>
      <guid>https://snipplr.com/view/16529/show-all-blocs-of-a-page</guid>
    </item>
    <item>
      <title>(CSS) Clearfix with different layout classes - chrisjlee</title>
      <link>https://snipplr.com/view/16192/clearfix-with-different-layout-classes</link>
      <description>&lt;p&gt;Clearfix with 2 different classes: page, section&#13;
&#13;
Section: takes up a whole row (much like TR); &#13;
Page: is the container for each section&lt;/p&gt;</description>
      <pubDate>Mon, 22 Jun 2009 12:23:06 UTC</pubDate>
      <guid>https://snipplr.com/view/16192/clearfix-with-different-layout-classes</guid>
    </item>
    <item>
      <title>(Other) Page footer that sticks to viewport bottom unless content is beyond viewport - johnloy</title>
      <link>https://snipplr.com/view/15334/page-footer-that-sticks-to-viewport-bottom-unless-content-is-beyond-viewport</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 26 May 2009 14:54:26 UTC</pubDate>
      <guid>https://snipplr.com/view/15334/page-footer-that-sticks-to-viewport-bottom-unless-content-is-beyond-viewport</guid>
    </item>
    <item>
      <title>(CSS) 960 Grid - Grey Box Layout - sixmedia</title>
      <link>https://snipplr.com/view/14898/960-grid--grey-box-layout</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 11 May 2009 05:12:01 UTC</pubDate>
      <guid>https://snipplr.com/view/14898/960-grid--grey-box-layout</guid>
    </item>
    <item>
      <title>(XML) Magento Standard Layout Ã¤ndern - nico65</title>
      <link>https://snipplr.com/view/14781/magento-standard-layout-ndern</link>
      <description>&lt;p&gt;am elegantesten per local.xml&lt;/p&gt;</description>
      <pubDate>Wed, 06 May 2009 15:04:57 UTC</pubDate>
      <guid>https://snipplr.com/view/14781/magento-standard-layout-ndern</guid>
    </item>
    <item>
      <title>(CSS) Cool CSS way to make left- or right-aligned (but not "styled" or "classed") images look pretty with no HTML change. - kossmoss</title>
      <link>https://snipplr.com/view/14216/cool-css-way-to-make-left-or-rightaligned-but-not-styled-or-classed-images-look-pretty-with-no-html-change</link>
      <description>&lt;p&gt;When we can't or won't change the code of image tag with align attribute, but no 'style="margin: 0 10px 10px 0;' or 'hspace=10px' (IMHO, hspace makes bad looking layout in most cases) code within  (just pure &lt;img&gt; code), we can use simple CSS rules for such an images to make them good looking.&lt;/p&gt;</description>
      <pubDate>Mon, 20 Apr 2009 19:19:11 UTC</pubDate>
      <guid>https://snipplr.com/view/14216/cool-css-way-to-make-left-or-rightaligned-but-not-styled-or-classed-images-look-pretty-with-no-html-change</guid>
    </item>
    <item>
      <title>(Bash) Change console keyboard layout in Ubuntu - fnurl</title>
      <link>https://snipplr.com/view/13791/change-console-keyboard-layout-in-ubuntu</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 05 Apr 2009 12:25:17 UTC</pubDate>
      <guid>https://snipplr.com/view/13791/change-console-keyboard-layout-in-ubuntu</guid>
    </item>
    <item>
      <title>(jQuery) Simple jQuery Equal Columns Plug-in - 1man</title>
      <link>https://snipplr.com/view/13096/simple-jquery-equal-columns-plugin</link>
      <description>&lt;p&gt;A very simple plug-in I wrote to make x number of columns equal height. Looks for the column with the biggest height then sets the rest to the same. I'm sure it can be made cleaner, will look into that later.&lt;/p&gt;</description>
      <pubDate>Fri, 13 Mar 2009 14:47:20 UTC</pubDate>
      <guid>https://snipplr.com/view/13096/simple-jquery-equal-columns-plugin</guid>
    </item>
    <item>
      <title>(HTML) Expanding form with rounded corners - superdeluxesam</title>
      <link>https://snipplr.com/view/11877/expanding-form-with-rounded-corners</link>
      <description>&lt;p&gt;A simple form with rounded corners, and hopefully not too much markup. You'll need some kind of graphic for the corners of course - I used 20px corners for this.&#13;
&#13;
It's a bit rough, would love to know what some other people think.&lt;/p&gt;</description>
      <pubDate>Thu, 05 Feb 2009 12:15:41 UTC</pubDate>
      <guid>https://snipplr.com/view/11877/expanding-form-with-rounded-corners</guid>
    </item>
    <item>
      <title>(CSS) Horizontally centering elements without width - kanirasta</title>
      <link>https://snipplr.com/view/9164/horizontally-centering-elements-without-width</link>
      <description>&lt;p&gt;Add two containers to the element to be centered.&#13;
&#13;
This is also needed for IE6:&#13;
&#13;
   1.&#13;
      &lt;!--[if&gt;--&gt;&#13;
   2.&#13;
      .navwrap ul{float:left;}&#13;
   3.&#13;
      &lt;![endif]--&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 21 Oct 2008 11:55:45 UTC</pubDate>
      <guid>https://snipplr.com/view/9164/horizontally-centering-elements-without-width</guid>
    </item>
    <item>
      <title>(CSS) CSS multi columns layout - Ashung</title>
      <link>https://snipplr.com/view/7393/css-multi-columns-layout</link>
      <description>&lt;p&gt;CSS multi columns layout&lt;/p&gt;</description>
      <pubDate>Sat, 19 Jul 2008 01:42:29 UTC</pubDate>
      <guid>https://snipplr.com/view/7393/css-multi-columns-layout</guid>
    </item>
    <item>
      <title>(CSS) Cross-browser fluid layout - iTony</title>
      <link>https://snipplr.com/view/5703/crossbrowser-fluid-layout</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 04 Apr 2008 17:34:13 UTC</pubDate>
      <guid>https://snipplr.com/view/5703/crossbrowser-fluid-layout</guid>
    </item>
    <item>
      <title>(CSS) CSS Sticky Footer - rouxmout</title>
      <link>https://snipplr.com/view/5660/css-sticky-footer</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 02 Apr 2008 13:16:39 UTC</pubDate>
      <guid>https://snipplr.com/view/5660/css-sticky-footer</guid>
    </item>
    <item>
      <title>(CSS) Equidistant Objects with CSS - localhorst</title>
      <link>https://snipplr.com/view/5441/equidistant-objects-with-css</link>
      <description>&lt;p&gt;Creating a horizontal row of objects that are equidistant from each other is another one of those things in web design that is much more difficult than it should be. This can be a very useful thing to do, especially in fluid width layouts when you are trying to make the most of whatever horizontal space you have. Here are the goals we are trying to achieve:&lt;/p&gt;</description>
      <pubDate>Sat, 15 Mar 2008 18:45:01 UTC</pubDate>
      <guid>https://snipplr.com/view/5441/equidistant-objects-with-css</guid>
    </item>
    <item>
      <title>(JavaScript) Min-width &amp; max-width for IE - xalexx</title>
      <link>https://snipplr.com/view/4779/minwidth--maxwidth-for-ie</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Jan 2008 05:52:01 UTC</pubDate>
      <guid>https://snipplr.com/view/4779/minwidth--maxwidth-for-ie</guid>
    </item>
  </channel>
</rss>
