<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Glotzfisch.de &#187; CSS</title>
	<atom:link href="http://www.glotzfisch.de/category/web-programming/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.glotzfisch.de</link>
	<description>If something does not work out the way you want it to - try something different</description>
	<lastBuildDate>Wed, 26 May 2010 08:43:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Content Wrapper to avoid wrong clearing</title>
		<link>http://www.glotzfisch.de/content-wrapper-to-avoid-wrong-clearing/</link>
		<comments>http://www.glotzfisch.de/content-wrapper-to-avoid-wrong-clearing/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 16:46:51 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[(D)HTML]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/?p=91</guid>
		<description><![CDATA[to avoid long empty spaces when clearing a float environment, wrap the content into a div with the following properties:

.wrapper {
   position:relative;
   overflow: hidden;
 }
]]></description>
			<content:encoded><![CDATA[<p>to avoid long empty spaces when clearing a float environment, wrap the content into a div with the following properties:</p>
<pre>
.wrapper {
   position:relative;
   overflow: hidden;
 }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/content-wrapper-to-avoid-wrong-clearing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS &gt; Transparent Background</title>
		<link>http://www.glotzfisch.de/transparent-background/</link>
		<comments>http://www.glotzfisch.de/transparent-background/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 06:43:30 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/transparent-background/</guid>
		<description><![CDATA[
filter: alpha(opacity=70);
-moz-opacity:0.70;
opacity:0.70;
]]></description>
			<content:encoded><![CDATA[<pre>
filter: alpha(opacity=70);
-moz-opacity:0.70;
opacity:0.70;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/transparent-background/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toggle Visibility und co</title>
		<link>http://www.glotzfisch.de/toggle-visibility-und-co/</link>
		<comments>http://www.glotzfisch.de/toggle-visibility-und-co/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 22:13:59 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[(D)HTML]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/toggle-visibility-und-co/</guid>
		<description><![CDATA[in fact, it&#8217;s toggle display here. The difference is that visibility reserves the space on the page but just does not display the text there and display really collapses the text to the remaining parts.
JavaScript Function:
 &#60;script language="JavaScript"&#62;
 function toggle(element)
 {
  //    alert (document.getElementById(element).style.display);
  var neuer_status;
  if(document.getElementById(element).style.display == 'block')
 [...]]]></description>
			<content:encoded><![CDATA[<p>in fact, it&#8217;s toggle display here. The difference is that visibility reserves the space on the page but just does not display the text there and display really collapses the text to the remaining parts.</p>
<h3>JavaScript Function:</h3>
<pre> &lt;script language="JavaScript"&gt;
 function toggle(element)
 {
  //    alert (document.getElementById(element).style.display);
  var neuer_status;
  if(document.getElementById(element).style.display == 'block')
    neuer_status = 'none'
  else
    neuer_status = 'block'
  document.getElementById(element).style.display = neuer_status;
 }
 &lt;/script&gt;</pre>
<h3>HTML Source Code</h3>
<p>(in a loop with $i)</p>
<pre> &lt;a href=# onMouseOver=javaScript:toggle(\"mem".$i."\");
           onMouseOut=javaScript:toggle(\"mem".$i."\");&gt;".Toggle!."&lt;/a&gt;
 &lt;div class=\"hiddenbox\" id=\"mem".$i."\"&gt;".Some hidden Text."&lt;/div&gt;</pre>
<h3>CSS Definition</h3>
<pre> .hiddenbox {
       position:absolute;
       display:inline;
       display:none;
       width:200px;
 }</pre>
<h3>Move a block to another position</h3>
<p>how to move a div box with JavaScript (das kann man natuerlich noch beliebig verfeinern, see also: <a href="http://www.html-world.de/program/dhtml_3.php" class="urllink">http://www.html-world.de/program/dhtml_3.php</a>.):</p>
<pre>  onClick = "document.getElementById(element).style.top=600+'px';"</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/toggle-visibility-und-co/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BrowserTipps</title>
		<link>http://www.glotzfisch.de/browsertipps/</link>
		<comments>http://www.glotzfisch.de/browsertipps/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 21:19:53 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/browsertipps/</guid>
		<description><![CDATA[Verschiedene Browser, verschiedene Sorgen&#8230; das Leben als Pixelschubse ist schon manchmal nicht so einfach. Dank des genialen Buchs &#8220;CSS Layouts&#8221; von Dirk Jesse, das ich an dieser Stelle nochmal erwähnen möchte, bin ich nun um einige Hacks schlauer ;-)
Das Sorgenkind: IE
Auch hierfür gibt es Hilfsmittel. z.B. die Web Developer Toolbar von MS
Naja&#8230; Safari
macht alles anders, [...]]]></description>
			<content:encoded><![CDATA[<p>Verschiedene Browser, verschiedene Sorgen&#8230; das Leben als Pixelschubse ist schon manchmal nicht so einfach. Dank des genialen Buchs &#8220;<a href="http://www.yaml.de/css_layouts.html" class="urllink">CSS Layouts</a>&#8221; von Dirk Jesse, das ich an dieser Stelle nochmal erwähnen möchte, bin ich nun um einige Hacks schlauer ;-)</p>
<h3>Das Sorgenkind: IE</h3>
<p>Auch hierfür gibt es Hilfsmittel. z.B. die <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&amp;displaylang=en">Web Developer Toolbar</a> von MS</p>
<h3>Naja&#8230; Safari</h3>
<p>macht alles anders, koennte man sagen. Und macht mir vor allem Probleme beim mod-rewrite, das ich bei der Copyright Message benutze&#8230;</p>
<h3>Der Standard: FF</h3>
<p>sollte ja allgemein bekannt sein, aber der Vollständigkeit halber: <a href="http://chrispederick.com/work/webdeveloper/">Web Developer Toolbar für FF</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/browsertipps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Marking External Links</title>
		<link>http://www.glotzfisch.de/marking-external-links/</link>
		<comments>http://www.glotzfisch.de/marking-external-links/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 22:20:28 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/marking-external-links/</guid>
		<description><![CDATA[External Links können &#8211; falls gewünscht &#8211; mit einem kleinen Bildchen versehen werden, damit der User sieht, dass es sich hierbei um einen externen link handelt
das hat sicher wieder was mit regexp zu tun, gell Stefan?
  #main a[href^="http:"], #main a[href^="https:"]
  {
	padding-left: 12px;
	background-image: url('/images/ext_link.gif');
	background-repeat: no-repeat;
	background-position: left;
  }
]]></description>
			<content:encoded><![CDATA[<p>External Links können &#8211; falls gewünscht &#8211; mit einem kleinen Bildchen versehen werden, damit der User sieht, dass es sich hierbei um einen externen link handelt</p>
<p>das hat sicher wieder was mit regexp zu tun, gell Stefan?</p>
<pre>  #main a[href^="http:"], #main a[href^="https:"]
  {
	padding-left: 12px;
	background-image: url('/images/ext_link.gif');
	background-repeat: no-repeat;
	background-position: left;
  }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/marking-external-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
