<?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>fragmente &#187; CSS</title>
	<atom:link href="http://blog.team-noir.net/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.team-noir.net</link>
	<description>team noir blog</description>
	<lastBuildDate>Thu, 19 Jan 2012 15:04:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>css3 snippets for every day: border-radius, gradient, shadow, &#8230;</title>
		<link>http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/</link>
		<comments>http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 17:01:53 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=432</guid>
		<description><![CDATA[How to Some nice CSS3 snippets for every day work &#8230; rounded corners:  border-radius -moz-border-radius: 5px; border-radius: 5px; prefix is only necessary for mozilla! reference: border-radius -moz-border-radius border-top-left-radius -moz-border-radius-topleft border-top-right-radius -moz-border-radius-topright border-bottom-right-radius -moz-border-radius-bottomright border-bottom-left-radius -moz-border-radius-bottomleft more border-radius linear gradients /* Firefox 3.6 */ -moz-linear-gradient(top, #ddd, #fff); /* Safari &#38; Chrome */ -webkit-gradient(linear,left bottom,left top,color-stop(0, #fff),color-stop(1, [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2009/08/how-to-style-the-dotted-link-border-in-firefox/' rel='bookmark' title='How to &#8230; style the dotted link border in Firefox'>How to &#8230; style the dotted link border in Firefox</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to</p>
<p>Some nice CSS3 snippets for every day work &#8230;</p>
<p><span id="more-432"></span></p>
<h4>rounded corners:  <strong>border-radius</strong></h4>
<pre>-moz-border-radius: 5px;
border-radius: 5px;
</pre>
<p>prefix is only necessary for mozilla!</p>
<p>reference:</p>
<pre>border-radius
-moz-border-radius
border-top-left-radius
-moz-border-radius-topleft
border-top-right-radius
-moz-border-radius-topright
border-bottom-right-radius
-moz-border-radius-bottomright
border-bottom-left-radius
-moz-border-radius-bottomleft
</pre>
<p><a href="http://www.css3.info/preview/rounded-border/">more border-radius</a></p>
<h4><strong>linear gradients</strong></h4>
<pre>/* Firefox 3.6 */
-moz-linear-gradient(top, #ddd, #fff);
/* Safari &amp; Chrome */
-webkit-gradient(linear,left bottom,left top,color-stop(0, #fff),color-stop(1, #ddd));
/* IE6 &amp; IE7 */
filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ddd',
endColorstr='#fff');
/* IE8 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ddd',
endColorstr='#fff')";
</pre>
<p><a href="http://codecandies.de/2010/02/16/css-3-gradients/">more gradients 1</a><br />
<a href="http://robertnyman.com/2010/02/15/css-gradients-for-all-web-browsers-without-using-images/">more gradients 2</a><br />
<a href="http://www.colorzilla.com/gradient-editor/">more gradients 3 (generator)</a></p>
<h4><strong>box-shadow:</strong></h4>
<pre>/*Schlagschatten*/
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;

/*inner shadow */
-moz-box-shadow: inset 0 0 5px #888;
-webkit-box-shadow: inset 0 0 5px#888;
box-shadow: inner 0 0 5px #888;
</pre>
<p><a href="http://www.css3.info/preview/box-shadow/">more box-shadow</a></p>
<h4><strong>text-shadow:</strong></h4>
<pre>text-shadow: 2px 2px 2px #000;
</pre>
<p>and for our best friend -&gt; internet explorer some nice <a href="http://www.smashingmagazine.com/2010/04/28/css3-solutions-for-internet-explorer/">workarounds</a></p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2009/08/how-to-style-the-dotted-link-border-in-firefox/' rel='bookmark' title='How to &#8230; style the dotted link border in Firefox'>How to &#8230; style the dotted link border in Firefox</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to use transparency with different Browsers</title>
		<link>http://blog.team-noir.net/2010/07/how-to-use-transparency-with-different-browser/</link>
		<comments>http://blog.team-noir.net/2010/07/how-to-use-transparency-with-different-browser/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 16:19:37 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=404</guid>
		<description><![CDATA[How to: One more snippet &#8230; I hab trouble with transparency backgrounds and the different Browser interpretation, ahhrgh. But finally i found a cool summary. take this: div .test { background: rgb(255, 255, 255); /* fallback for all old guys */ background: rgba(2255, 255, 255, 0.5); } Internet Explorer need a special treatment, via conditional [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to:</strong></p>
<p>One more snippet &#8230;</p>
<p>I hab trouble with transparency backgrounds and the different Browser interpretation, ahhrgh. But finally i found a cool <a href="http://css-tricks.com/examples/RGBaSupport/" target="_blank">summary</a>.</p>
<p><strong>take this:</strong></p>
<pre><code>div .test {
   background: rgb(255, 255, 255); /* fallback for all old guys */
   background: rgba(2255, 255, 255, <strong>0.5</strong>);
}
</code></pre>
<p><strong>Internet Explorer </strong>need a special treatment, via conditional comment</p>
<pre><code>&lt;!--[if lt IE 9]&gt;
div .test {background:#fff; filter:alpha(opacity=<strong>50</strong>);}
&lt;![endif]--&gt;</code></pre>
<p>Thats all. Enjoy it.</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/07/how-to-use-transparency-with-different-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS: center background image in Firefox &amp; Co.</title>
		<link>http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/</link>
		<comments>http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 10:09:09 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[background-image]]></category>
		<category><![CDATA[center]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=399</guid>
		<description><![CDATA[Today just a short snippet. To center a background image vertical and horizontal especially Mozilla Firefox need the attribute &#8220;fixed&#8221;: body { background-image: url(....); background-position: center center; background-attachment: fixed; height: 100%; } Tested with: IE 6 &#8211; 8, Firefox 3.6, Safari 4 With this little trick, my day will be fine! Ole. Related posts: How [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2009/08/how-to-style-the-dotted-link-border-in-firefox/' rel='bookmark' title='How to &#8230; style the dotted link border in Firefox'>How to &#8230; style the dotted link border in Firefox</a></li>
<li><a href='http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/' rel='bookmark' title='How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1'>How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today just a short snippet.</p>
<p>To center a background image vertical and horizontal especially Mozilla Firefox need the attribute &#8220;fixed&#8221;:</p>
<pre>body {
background-image: url(....);
background-position: center center;
<strong><span style="color: #800000;">background-attachment: fixed</span></strong>;
height: 100%;
}</pre>
<p>Tested with:<strong> IE 6 &#8211; 8, Firefox 3.6, Safari 4</strong></p>
<p>With this little trick, my day will be fine! Ole.</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2009/08/how-to-style-the-dotted-link-border-in-firefox/' rel='bookmark' title='How to &#8230; style the dotted link border in Firefox'>How to &#8230; style the dotted link border in Firefox</a></li>
<li><a href='http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/' rel='bookmark' title='How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1'>How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</title>
		<link>http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/</link>
		<comments>http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/#comments</comments>
		<pubDate>Thu, 27 May 2010 11:43:19 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[YAML]]></category>
		<category><![CDATA[ie7]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=376</guid>
		<description><![CDATA[When you have a div-container which has the attribute position-absolute and you put a 2nd div-container inside (which has also a position-absolute attribute) it can happens that Internet Explorer 7 does not interpret this correct. I had the problem, that the 2nd div-container (which is a fold-out CSS-menu) is larger than the sorrounding div. In [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/overflow-auto-internet-explorer-6-bug/' rel='bookmark' title='overflow:auto &#8211; Internet Explorer 6 Bug'>overflow:auto &#8211; Internet Explorer 6 Bug</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/' rel='bookmark' title='How to code a jQuery slider menu'>How to code a jQuery slider menu</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When you have a div-container which has the attribute position-absolute and you put a 2nd div-container inside (which has also a position-absolute attribute) it can happens that Internet Explorer 7 does not interpret this correct.</p>
<p>I had the problem, that the 2nd div-container (which is a fold-out CSS-menu) is larger than the sorrounding div. In IE 7 the CSS-menu lays, in the part outside the sorrounding container, behind those elements. But for a menu you aspect to be the first element in the hierarchy.</p>
<p>Those layer positions can be set using z-index in CSS. The higher the index, the higher the position of the element to users-view. So I set the z-index to a high value but in IE 7 nothing happened.</p>
<p><span id="more-376"></span></p>
<p>After trying a while I worked out a very easy solution. If you use for an element the position-absolute attribute it will be set out of the normal element-flow of the website and be positioned absolute to the given position. But IE 7 inherits the value from the parent-element (here the sorrounding div-container) which had no z-index.</p>
<p>So my <em>solution</em> is to give both, the surrounding and the inner div-container a z-index. The surrounding container gets (in my case) a higher z-index than the surrounding one and the problem is fixed! <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The surrounding element is the YAML #topnav-element and the inner one is a div-container with list-items which are styled as a JS-free fully CSS-menu.</p>
<pre>#topnav {
  overflow:visible;
  z-index:5;
  position:absolute;
  [...]
}

#inner_container {
  position:absolute;
  z-index:2;
  [...]
}</pre>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/overflow-auto-internet-explorer-6-bug/' rel='bookmark' title='overflow:auto &#8211; Internet Explorer 6 Bug'>overflow:auto &#8211; Internet Explorer 6 Bug</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/' rel='bookmark' title='How to code a jQuery slider menu'>How to code a jQuery slider menu</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to code a jQuery slider menu</title>
		<link>http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/</link>
		<comments>http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 13:25:54 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[YAML]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=339</guid>
		<description><![CDATA[How to &#8230; I show you a nice jQuery snippet for a smoothy slider menu. This was my first jQuery experience &#8211; if you find some tuning options, tell me please! Here you can see my script in Action: http://www.gyn-endoskopie.de/ /** * @author team noir GbR * simple slide-out Menu * www.gyn-endoskopie.de * Version 1.5 [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-integrate-a-yaml-menu-to-typo3/' rel='bookmark' title='How to &#8230; integrate  a YAML Menu to TYPO3'>How to &#8230; integrate  a YAML Menu to TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/' rel='bookmark' title='How to build a YAML fullscreen layout'>How to build a YAML fullscreen layout</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to &#8230;</strong></p>
<p>I show you a nice jQuery snippet for a smoothy slider menu.</p>
<p>This was my first <a href="http://jquery.com/">jQuery</a> experience &#8211; if you find some tuning options, tell me please!</p>
<p>Here you can see my script in Action: <a title="Dr med Söder" href="http://www.gyn-endoskopie.de/">http://www.gyn-endoskopie.de/</a></p>
<p><span id="more-339"></span></p>
<pre>/**
 * @author team noir GbR
 * simple slide-out Menu
 * www.gyn-endoskopie.de
 * Version 1.5 - 11.01.2010
 */
$(document).ready(function() {
 //on first loading, hide the submenu
 $(".subul li").hide();
 //show active sub element, after paging
 $(".active").parent().parent(".subul").css('margin-top', -4).children("li").show(".subul li");

 //Actionhandling
 //click on menu
 $(".slide").click(function(){

 //only one submenu is allowed to show
 $(".angeklickt li").slideUp("fast");
 $(".angeklickt").removeClass("angeklickt");
 //close other open submenus
 $(".active").parent().parent(".subul").children("li").slideUp(".subul li");

 //mark heading ul
 $(this).next("ul").addClass('angeklickt');

 //show marked submenu
 if ($(".angeklickt li").is(":hidden")) {
 $(".angeklickt li").slideDown("slow");
 $("ul.angeklickt").css('margin-top', -4);
 return false;
 }
 //close/slide submenu
 else {
 $(".angeklickt li").slideUp("slow");
 $("ul.angeklickt").css('margin-top', 0);
 $(this).next("ul").removeClass("angeklickt");
 return false;
 }
 });

});
</pre>
<p>this is the menu source code:</p>
<pre>&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#"&gt;Startseite&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#"&gt;Zur Person&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#l"&gt;Operationen&lt;/a&gt;
 &lt;ul class="subul&gt;
   &lt;li&gt;&lt;a href="#" title="Operationsspektrum"&gt;Operationsspektrum&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="OP-Aufklärung"&gt;OP-Aufklärung&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="OP-Patienteninfos"&gt;OP-Patienteninfos&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="Anmeldung"&gt;Anmeldung&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="#" title="Novasure/Goldnetz"&gt;Novasure/Goldnetz&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#" title="Tagesklinik"&gt;Tagesklinik&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#"&gt;Kontakt&lt;/a&gt;
 &lt;ul class="subul&gt;
   &lt;li&gt;&lt;a href="#" title="Schreiben Sie uns"&gt;Schreiben Sie uns&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="Anfahrt mit dem Auto"&gt;Anfahrt mit dem Auto&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="Wegbeschreibung"&gt;Wegbeschreibung&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>System information:</p>
<ul>
<li>TYPO3 4 CMS</li>
<li>YAML 3.1</li>
<li>CSS 2/3</li>
<li>XHTML 1.0</li>
<li><a title="Dr med Söder" href="http://www.gyn-endoskopie.de/">http://www.gyn-endoskopie.de/</a></li>
</ul>
<p><a href="http://blog.team-noir.net/wp-content/uploads/2010/03/slider_menu.png"><img class="alignnone size-full wp-image-347" title="slider_menu" src="http://blog.team-noir.net/wp-content/uploads/2010/03/slider_menu.png" alt="" width="214" height="357" /></a></p>
<p>greetz!</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-integrate-a-yaml-menu-to-typo3/' rel='bookmark' title='How to &#8230; integrate  a YAML Menu to TYPO3'>How to &#8230; integrate  a YAML Menu to TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/' rel='bookmark' title='How to build a YAML fullscreen layout'>How to build a YAML fullscreen layout</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to build a YAML fullscreen layout</title>
		<link>http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/</link>
		<comments>http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 12:45:15 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[YAML]]></category>
		<category><![CDATA[fullscreen]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=323</guid>
		<description><![CDATA[How to &#8230; Yaml provides a nice solution for column layout, center layout and fullscreen layout. The last team-noir project was a fullscreen-design for our customer. I show you how easy it is to code such a template: Dirk Jesse wrote a very good documentation: Variations of the Markup As demonstrated, the two CSS classes  [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2009/04/using-yaml-and-be-fully-variable/' rel='bookmark' title='Using YAML and be fully variable'>Using YAML and be fully variable</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to &#8230;</strong></p>
<p>Yaml provides a nice solution for column layout, center layout and fullscreen layout.</p>
<p>The <a title="Dr med Söder" href="http://www.gyn-endoskopie.de/">last team-noir project</a> was a fullscreen-design for our customer. I show you how easy it is to code such a template:</p>
<p><span id="more-323"></span></p>
<p><a href="http://blog.team-noir.net/wp-content/uploads/2010/03/fullscreen.png" target="_blank"><img class="alignnone size-full wp-image-325" title="fullscreen" src="http://blog.team-noir.net/wp-content/uploads/2010/03/fullscreen.png" alt="" width="270" height="458" /></a></p>
<p>Dirk Jesse wrote a very good <a href="http://www.yaml.de/en/documentation/basics/xhtml-source-code.html">documentation</a>:</p>
<blockquote>
<h3>Variations of the Markup</h3>
<p>As demonstrated, the two CSS classes  .page_margins and .page control the basic appearance of the layout, by setting the total width as well as margins, borders, or backgrounds if necessary.</p>
<p>In the source code described above, the outermost DIV container  .page_margins surrounds all the other elements of the webpage. This results in a layout which in its simplest form is a rectangular box against the background of the &lt;body&gt; element.  This effect is not always desirable.</p></blockquote>
<p>So the main ascpect is to order your source by:</p>
<pre><code>&lt;div id="header / col1 / ..."&gt;
    &lt;div class="page_margins"&gt;
      &lt;div class="page"&gt;
         ...
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt; </code></pre>
<p>modify the <em>basemod.css</em>:</p>
<pre>/* (en) Centering layout in old IE-versions */
 body { text-align:center; }
 .page_margins { text-align:left; margin:0 auto; }

 /* (en) Layout:width, background, borders */
 .page_margins { <strong>width: 100%</strong>; background: transparent; }
</pre>
<p>Example on <a href="http://www.yaml.de/fileadmin/examples/07_layouts_advanced_2/fullpage_3col.html">Yaml.de</a>, and <a href="http://www.yaml.de/fileadmin/examples/07_layouts_advanced_2/fullpage_grids.html">here<br />
</a></p>
<p>So as you can see &#8211; really easy coding -&gt; thank&#8217;s to <a href="http://www.highresolution.info/">Dirk Jesse</a>!</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2009/04/using-yaml-and-be-fully-variable/' rel='bookmark' title='Using YAML and be fully variable'>Using YAML and be fully variable</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS border-bottom for IE 6</title>
		<link>http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/</link>
		<comments>http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 13:29:08 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[ie6]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=247</guid>
		<description><![CDATA[We have decided we our bad Browser-script to not any longer support browsers like IE 6 which does not follow the HTML-standards. But sometimes, maybe when you are at work, it is not that easy. Sometimes you need a little work around or a special CSS only for IE 6. Today it was one of [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/' rel='bookmark' title='css3 snippets for every day: border-radius, gradient, shadow, &#8230;'>css3 snippets for every day: border-radius, gradient, shadow, &#8230;</a></li>
<li><a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/' rel='bookmark' title='Floating problems with IE 6'>Floating problems with IE 6</a></li>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We have decided we our bad Browser-script to not any longer support browsers like IE 6 which does not follow the HTML-standards.</p>
<p>But sometimes, maybe when you are at work, it is not that easy. Sometimes you need a little work around or a special CSS only for IE 6. Today it was one of those days. At work I made a site were articles are shown in a list, only one little overview-snippet for each article. Now I want, to made it more clearly arranged a solid line between each div-container. Thought and done in CSS, it worked fine &#8211; in Firefox. But not for Internet Explorer 6.</p>
<p><span id="more-247"></span></p>
<p>But after a little internet search I found a very easy to use solution: you have to put a margin-bottom also in your CSS-class and than IE 6 let the line appear. <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This is my class.</p>
<pre>.my_class {
   padding: 10px;
   border-bottom: 1px solid #999;
   margin-bottom: 1px; /* needed to show the border also in IE 6 */
   min-height: 190px;
}</pre>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/' rel='bookmark' title='css3 snippets for every day: border-radius, gradient, shadow, &#8230;'>css3 snippets for every day: border-radius, gradient, shadow, &#8230;</a></li>
<li><a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/' rel='bookmark' title='Floating problems with IE 6'>Floating problems with IE 6</a></li>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Floating problems with IE 6</title>
		<link>http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/</link>
		<comments>http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 13:18:41 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[ie6]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=221</guid>
		<description><![CDATA[The Internet Explorer 6 has sometimes a problem with floating right. Today I had this problem. I have two div-container: one a image which has to float left and a text block which has to float right. On Firefox this works without any problems. But IE 6 do not float the text to the right [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The Internet Explorer 6 has sometimes a problem with floating right. Today I had this problem. I have two div-container: one a image which has to float left and a text block which has to float right. On Firefox this works without any problems. But IE 6 do not float the text to the right but just put it after the image. After a little internet search I found a similar problem, the so called <a title="Explanation of the doubled float-margin bug" href="http://www.positioniseverything.net/explorer/doubled-margin.html">doubled float-margin bug</a> on IE 6.<span id="more-221"></span></p>
<p>The solution of this problem, just set the floating boxes with inline-attribute, works also for this right-floating problem. Just set for the CSS-id the following:</p>
<pre>display: inline;</pre>
<p>See the pictures below. The left one is with bug, the right one without. Hope this helps some others. <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/ie_float_problem/' title='IE6 right-floating problems'><img width="150" height="123" src="http://blog.team-noir.net/wp-content/uploads/2009/08/ie_float_problem-150x123.png" class="attachment-thumbnail" alt="IE6 right-floating problems" title="IE6 right-floating problems" /></a>
<a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/ie_float_fix/' title='IE6 fixed right-floating'><img width="150" height="119" src="http://blog.team-noir.net/wp-content/uploads/2009/08/ie_float_fix-150x119.png" class="attachment-thumbnail" alt="IE6 fixed right-floating" title="IE6 fixed right-floating" /></a>

<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to &#8230; style the dotted link border in Firefox</title>
		<link>http://blog.team-noir.net/2009/08/how-to-style-the-dotted-link-border-in-firefox/</link>
		<comments>http://blog.team-noir.net/2009/08/how-to-style-the-dotted-link-border-in-firefox/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 09:17:08 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[active]]></category>
		<category><![CDATA[dotted]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=213</guid>
		<description><![CDATA[How to Today a short but usefull snippet. On our website i discoverd a ugly, dotted corner on active and focus links in our menu (see picture) With one little line css code, the problem is solved! a:active, a:focus {outline: none;} You can check our site &#8211; nothing to see &#8230; greetz, ole! Related posts: [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to</strong></p>
<p>Today a short but usefull snippet.<br />
On our website i discoverd a <span style="text-decoration: underline;">ugly</span>, dotted corner on active and focus links in our menu (see picture)<br />
<span id="more-213"></span></p>
<p><img class="alignnone size-full wp-image-214" title="corner" src="http://blog.team-noir.net/wp-content/uploads/2009/08/corner.gif" alt="corner" width="436" height="178" /></p>
<p>With one little line css code, the problem is solved!</p>
<pre>a:active, a:focus {outline: none;}</pre>
<p>You can check our site &#8211; nothing to see <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&#8230; greetz, ole!</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='CSS: center background image in Firefox &amp; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='CSS floating problems'>CSS floating problems</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/08/how-to-style-the-dotted-link-border-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS floating problems</title>
		<link>http://blog.team-noir.net/2009/06/css-floating-problems/</link>
		<comments>http://blog.team-noir.net/2009/06/css-floating-problems/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 16:30:24 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[clear]]></category>
		<category><![CDATA[float]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=127</guid>
		<description><![CDATA[Today I had a really annoying problem with two floated elements and a clear afterwards. It´s well known if you want to put two elements (two div-container) side by side instead of one below the other you have to use CSS-floating and to stop the float afterwards (to start the normal document flow) you have [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/' rel='bookmark' title='Floating problems with IE 6'>Floating problems with IE 6</a></li>
<li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today I had a really annoying problem with two floated elements and a clear afterwards. It´s well known if you want to put two elements (two <span style="font-family: courier new,courier;">div</span>-container) side by side instead of one below the other you have to use CSS-floating and to stop the float afterwards (to start the normal document flow) you have to clear the elements.</p>
<pre><code>.element_a {float: left;}
.element_b {float: right;}
.element_c {clear: both;}</code></pre>
<p>Today I had this problem. I was using within a YAML Layout (middle column) some elements, two were floated like shown above. Now I do a css clear for the <span style="font-family: courier new,courier;">hr</span>-tag (horizontal dashed line) to stop floating. What I got was the stopped floating, but also a big gap above the line (see first picture below). I was now trying with Firebug and other tools to eliminate this gap for one or two hours and it doesn´t work.<br />
I just wanted to put a negative <span style="font-family: courier new,courier;">margin-top</span> to slide the element above. But this doesn´t work at all! <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><span id="more-127"></span></p>
<p>Then I had an idea: I tried out, if this problem also occur when I set a other element (instead of the <span style="font-family: courier new,courier;">hr</span>-line) after the floated elements and clear this one. So I put an empty <span style="font-family: courier new,courier;">div</span>-container after the floated elements, but I get the same problem.<br />
I remembered the idea with the negative margin and test a little bit around with Firebug and then I see the solution. I can´t minimize the gap itself above the line. But I can set a negative margin for the bottom of the empty <span style="font-family: courier new,courier;">div</span>-container, which will pull the elements a few pixels nearer to the top.</p>
<p>I tried it out and it worked! So if you have a similar problem you don´t have to clear the <span style="font-family: courier new,courier;">hr</span>-element. Set just a <span style="font-family: courier new,courier;">div</span>-element after the floated container and clear this one. Then set a negativ <span style="font-family: courier new,courier;">margin-bottm</span> to close the gap above! Now I´m happy and can let the day end &#8230; in freedom. <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>PS:<br />
Sorry that there will be no example available. I can´t put the HTML and CSS code here. But I can show you a little picture to illustrate the problem.</p>
<div id="attachment_129" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.team-noir.net/wp-content/uploads/2009/06/clearing_problem.jpg"><img class="size-medium wp-image-129" title="Problem with clearing" src="http://blog.team-noir.net/wp-content/uploads/2009/06/clearing_problem-300x46.jpg" alt="Problem with clearing" width="300" height="46" /></a><p class="wp-caption-text">Problem with clearing</p></div>
<div id="attachment_132" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.team-noir.net/wp-content/uploads/2009/06/clearing_solution.jpg"><img class="size-medium wp-image-132" title="clearing_solution" src="http://blog.team-noir.net/wp-content/uploads/2009/06/clearing_solution-300x37.jpg" alt="Solution of the clearing problem" width="300" height="37" /></a><p class="wp-caption-text">Solution of the clearing problem</p></div>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/floating-problems-with-ie-6/' rel='bookmark' title='Floating problems with IE 6'>Floating problems with IE 6</a></li>
<li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/06/css-floating-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

