<?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 03:06:39 +0000</lastBuildDate>
    <item>
      <title>(CSS) Sticky Footer (make footer always be on bottom without absolute positioning) - lister</title>
      <link>https://snipplr.com/view/56117/sticky-footer-make-footer-always-be-on-bottom-without-absolute-positioning</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:26:09 UTC</pubDate>
      <guid>https://snipplr.com/view/56117/sticky-footer-make-footer-always-be-on-bottom-without-absolute-positioning</guid>
    </item>
    <item>
      <title>(CSS) Adding Google fonts - lister</title>
      <link>https://snipplr.com/view/56116/adding-google-fonts</link>
      <description>&lt;p&gt;Use this to add the Google font API. This lets you use some new cool-looking fonts on your website that all browsers and computers will display properly â€“ so you donâ€™t have to mess with installing fonts separately for your website or hoping your visitors have the appropriate fonts (which no self-respecting designer would do anyway).&#13;
&#13;
In the head:&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:22:53 UTC</pubDate>
      <guid>https://snipplr.com/view/56116/adding-google-fonts</guid>
    </item>
    <item>
      <title>(CSS) Pretty Ampersands - lister</title>
      <link>https://snipplr.com/view/56115/pretty-ampersands</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:19:13 UTC</pubDate>
      <guid>https://snipplr.com/view/56115/pretty-ampersands</guid>
    </item>
    <item>
      <title>(CSS) Linear Gradient - lister</title>
      <link>https://snipplr.com/view/56114/linear-gradient</link>
      <description>&lt;p&gt;CSS3 allows to create linear gradients which is a nice feature as you do not need an image anymore for this. Keep in mind that some browsers do not support this feature.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:17:53 UTC</pubDate>
      <guid>https://snipplr.com/view/56114/linear-gradient</guid>
    </item>
    <item>
      <title>(CSS) Create pull-quotes also known as a lift-out quote - lister</title>
      <link>https://snipplr.com/view/56113/create-pullquotes-also-known-as-a-liftout-quote</link>
      <description>&lt;p&gt;A pull-quote is often used in news magazines which notice small quotes added within the article, not as full block-quotes, but as small quotes that sit within the article but to the side, sometimes adding things such as peopleâ€™s opinions or quotes. The benefit of using pull-quotes is that it adds greatly to the user experience when reading an article.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:16:50 UTC</pubDate>
      <guid>https://snipplr.com/view/56113/create-pullquotes-also-known-as-a-liftout-quote</guid>
    </item>
    <item>
      <title>(CSS) Vertical Center - lister</title>
      <link>https://snipplr.com/view/56112/vertical-center</link>
      <description>&lt;p&gt;This snippet allows to vertically center the contents of a container without any extra markup by simply displaying it as a table cell. This allows you to use the vertical-align attribute.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:15:35 UTC</pubDate>
      <guid>https://snipplr.com/view/56112/vertical-center</guid>
    </item>
    <item>
      <title>(CSS) Min-height in IE - lister</title>
      <link>https://snipplr.com/view/56111/minheight-in-ie</link>
      <description>&lt;p&gt;Microsoft IEâ€™s does not have the capability of handling min-height. In essence, IE interprets height as min-height, so since IE wont implement the auto height, this snippet will fix all this for us (using !important).&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:14:37 UTC</pubDate>
      <guid>https://snipplr.com/view/56111/minheight-in-ie</guid>
    </item>
    <item>
      <title>(CSS) Center a website horizontally - lister</title>
      <link>https://snipplr.com/view/56110/center-a-website-horizontally</link>
      <description>&lt;p&gt;Usually a website is centered horizontally. To achieve this you need the following CSS.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:13:41 UTC</pubDate>
      <guid>https://snipplr.com/view/56110/center-a-website-horizontally</guid>
    </item>
    <item>
      <title>(CSS) @Font face or beautiful typography in the web - lister</title>
      <link>https://snipplr.com/view/56109/font-face-or-beautiful-typography-in-the-web</link>
      <description>&lt;p&gt;@Font face or beautiful typography in the web&#13;
&#13;
@Font-face offers a great way to use non web safe fonts in your web projects. While this snippet works, we strongly recommend you to use the Font Squirrel Font Face Generator. Not all browsers supports all types of fonts:&#13;
&#13;
    Internet Explorer only supports EOT&#13;
    Mozilla browsers support OTF and TTF&#13;
    Safari and Opera support OTF, TTF and SVG&#13;
    Chrome supports TTF and SVG.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:12:57 UTC</pubDate>
      <guid>https://snipplr.com/view/56109/font-face-or-beautiful-typography-in-the-web</guid>
    </item>
    <item>
      <title>(CSS) Basic css sprite button - lister</title>
      <link>https://snipplr.com/view/56107/basic-css-sprite-button</link>
      <description>&lt;p&gt;Using a sprite is a good idea as it lowers the HTTP-Request. Here is a simple example on how to use this technique. Using a sprite, we can create the hover effect by changing the position of the background image down to a certain height to show the background to the button on hover. A simple yet effective technique. The drawback of using multiple sprites on an image is that you cannot repeat it.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:10:19 UTC</pubDate>
      <guid>https://snipplr.com/view/56107/basic-css-sprite-button</guid>
    </item>
    <item>
      <title>(CSS) Multiple Columns - lister</title>
      <link>https://snipplr.com/view/56106/multiple-columns</link>
      <description>&lt;p&gt;Now you do not have to brother about columns as CSS3 supports it. Use CSS3 to create a set of columns on your website without having to assign individual layers and / or paragraphs for each column. It is pretty straightforward. In this example we create a 3 column layout.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:09:13 UTC</pubDate>
      <guid>https://snipplr.com/view/56106/multiple-columns</guid>
    </item>
    <item>
      <title>(CSS) Multiple Background Images - lister</title>
      <link>https://snipplr.com/view/56105/multiple-background-images</link>
      <description>&lt;p&gt;Multiple background images can be a useful feature if you want to put some pictures in a background in different positions. Separate it  using a comma with the standard background property.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:08:03 UTC</pubDate>
      <guid>https://snipplr.com/view/56105/multiple-background-images</guid>
    </item>
    <item>
      <title>(CSS) Hide text (to place logo) with text indent - lister</title>
      <link>https://snipplr.com/view/56103/hide-text-to-place-logo-with-text-indent</link>
      <description>&lt;p&gt;Hiding text can be extremely useful to hide company logo. As logos are usually an image, you will want to use text indent to place it in a h1 tag for SEO (Search Engine Optimization). The technique we use is to hide the text far away off the screen, and apply a background image instead.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 07:05:28 UTC</pubDate>
      <guid>https://snipplr.com/view/56103/hide-text-to-place-logo-with-text-indent</guid>
    </item>
    <item>
      <title>(CSS) CSS Global Reset - Eric Meyer - lister</title>
      <link>https://snipplr.com/view/6671/css-global-reset--eric-meyer</link>
      <description>&lt;p&gt;edit&lt;/p&gt;</description>
      <pubDate>Thu, 12 Jun 2008 11:08:13 UTC</pubDate>
      <guid>https://snipplr.com/view/6671/css-global-reset--eric-meyer</guid>
    </item>
    <item>
      <title>(CSS) reset CSS template - lister</title>
      <link>https://snipplr.com/view/6015/reset-css-template</link>
      <description>&lt;p&gt;by Chris Coyier&lt;/p&gt;</description>
      <pubDate>Sun, 27 Apr 2008 08:27:57 UTC</pubDate>
      <guid>https://snipplr.com/view/6015/reset-css-template</guid>
    </item>
  </channel>
</rss>
