<?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>CSSGURU.DE</title>
	<atom:link href="http://blog.cssguru.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cssguru.de</link>
	<description>Ein weiteres tolles WordPress-Blog</description>
	<lastBuildDate>Mon, 30 Jan 2012 19:44:39 +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>Responsive Webdesign mit Media Queries</title>
		<link>http://blog.cssguru.de/responsive-webdesign-mit-media-queries/</link>
		<comments>http://blog.cssguru.de/responsive-webdesign-mit-media-queries/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 19:41:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[media queries]]></category>
		<category><![CDATA[responsiven webdesign]]></category>

		<guid isPermaLink="false">http://blog.cssguru.de/?p=498</guid>
		<description><![CDATA[Damit Inhalte von den unterschiedlichsten Ausgabemedien wie z.b. Tablet-PCs und Smartphones dargestellt werden können, ist es wichtig, sie ihrer Auflösung entsprechend anzupassen. Einen möglichen Ansatz hierfür liefern Media Queries. Mit Media Queries können Sie die Darstellung, Menge und Reihenfolge der angezeigten Elemente einer Webseite von der Browserfensterbreite des Geräts abhängig machen, auf dem eine Webseite [...]]]></description>
			<content:encoded><![CDATA[<p>Damit Inhalte von den unterschiedlichsten Ausgabemedien wie z.b. Tablet-PCs und Smartphones dargestellt werden können, ist es wichtig, sie ihrer Auflösung entsprechend anzupassen. Einen möglichen Ansatz hierfür liefern Media Queries. Mit Media Queries können Sie die Darstellung, Menge und Reihenfolge der angezeigten Elemente einer Webseite von der Browserfensterbreite des Geräts abhängig machen, auf dem eine Webseite aufgerufen wird und somit den Ansatz eines responsiven Webdesigns verfolgen. Sie können also unterschiedliche Layouts generieren, ohne dabei auf JavaScript oder Änderungen im HTML-Code zurückgreifen zu müssen. Mit dem Pendant Media Types, kann man bereits seit geraumer Zeit individuelle Eigenschaften für spezielle Ausgabegeräte (screen, print, &#8230;) erstellen.<br />
<span id="more-498"></span><br />
<strong>Funktionsweise von Media Queries</strong></p>
<p>Um die Funktionsweise von Media Queries zu beschreiben, bieten die eingangs bereits erwähnten Media Types einen guten Einstiegspunkt. Wenn Sie bspw. separate Stylesheets für die Druckausgabe (bspw. print.css) erstellt haben, kennen Sie schon das Konzept, nach dem bestimmte Stylesheets unter bestimmten Bedingungen aufgerufen werden. Die aus CSS2 stammenden Media Types ermöglichen es also, die Ausgabe von Stylesheets bestimmten Medientypen wie einem Drucker (print), einem Braillegerät (braille) oder bspw. auch einem einem TV-Gerät (tv) zuzuordnen. Die hier im weiteren Verlauf des Artikels beschriebenen Media Queries entstammen CSS3; sie greifen dieses Konzept auf und bauen es weiter aus. Das heißt, es wird nicht nur nach dem Ausgabemedium entschieden, sondern anhand von Eigenschaften und Fähigkeiten von Endgeräten, wie beispielsweise der Breite und Höhe des Viewports.</p>
<p><a href="http://blog.cssguru.de/wp-content/uploads/responsive_webdeign_example.png"><img src="http://blog.cssguru.de/wp-content/uploads/responsive_webdeign_example-1024x315.png" alt="" title="responsive_webdeign_example" width="480" height="148" class="alignnone size-large wp-image-517" /></a></p>
<p>Für einen Anwender, der – unabhängig davon, ob er einen Desktop-PC oder ein mobiles Endgerät verwendet – einen Browser nutzt, der Media Queries unterstützt, können Sie separate, für das jeweilige Ausgabemedium optimierte Gestaltungseigenschaften festlegen. Voraussetzung für Media Queries ist daher die strikte Trennung von Inhalt und Layout! Denn nur dann besitzt man die Möglichkeit, die Inhalte einer Webseite je nach Bedarf des Anwenders in Abhängigkeit seines Endgerätes, dass Design zu optimieren. Wäre dies nicht der Fall und man hätte bspw. Inline-Styles oder gar Tabellen-Layouts, würde man irgendwann an die Grenzen seiner Möglichkeiten stoßen und hätte nicht mehr die Freiheit mit <a href="http://webstandard.kulando.de/static/modernes-webdesign-mit-css" target="_blank">CSS moderne Webseiten erstellen</a> zu können.</p>
<p><strong>Anlegen und Kombinieren von Media-Query-Regeln</strong></p>
<p>Analog zum Vorgehen bei Media Types, gibt es auch bei Media Queries verschiedene Wege, diese zusätzlichen, für die entsprechenden Endgeräte angelegten Eigenschaften einzubinden. Hierfür kann das link-Element verwendet werden, wobei dort das media-Attribut dazu dient, das jeweilige Ausgabemedien für die referenzierte CSS-Datei zu bestimmen:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;styles.css&quot;</span> <span style="color: #000066;">media</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;screen&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<p>Bei der Referenzierung mittels des link-Elementes kann man zudem aber auch weitere Eigenschaften als Merkmale miteinander kombinieren und somit die Bedinung die erfüllt werden muss, spezifizieren:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;styles.css&quot;</span> <span style="color: #000066;">media</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;screen and (min-width: 950px)&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<p>Man kann aber auch mehrere Media Queries mit den jeweiligen Merkmalen miteinander kombinieren. Dies geschieht, wie im folgenden Beispiel, durch eine Trennung mittels Komma:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;styles.css&quot;</span> <span style="color: #000066;">media</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;screen and (min-width: 950px),projection and (min-width: 1500px)&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<p>Bei wenig zusätzlichem Code können die notwendigen CSS-Eigenschaften, einfach an das Ende einer bereits vorhandenen CSS-Datei angelegt werden. Das Einfügen muss daher am Ende geschehen, weil zuvor für große Viewports definierte Eigenschaften von den Eigenschaften für kleine Viewports überschrieben werden müssen.</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;">body <span style="color: #00AA00;">&#123;</span>
...
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #a1a100;">@media screen and (max-width:750px) {</span>
body <span style="color: #00AA00;">&#123;</span> ... <span style="color: #00AA00;">&#125;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Aber damit nicht genug. Mit der Eigenschaft device-width können Sie auch gezielt die Breite von<br />
Endgeräten ansprechen:</p>
<p>iPads (Portrait und Landscape):</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;"><span style="color: #a1a100;">@media only screen and (mindevice-width:768px) and (maxdevice-width:1024px) {...}</span></pre></div></div>

<p>iPads (Landscape):</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;"><span style="color: #a1a100;">@media only screen and (mindevice-width:768px) and (maxdevice-width:1024px) and (orientation:</span>
<span style="color: #993333;">landscape</span><span style="color: #00AA00;">&#41;</span> <span style="color: #00AA00;">&#123;</span>...<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>iPads (Portrait):</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;"><span style="color: #a1a100;">@media only screen and (mindevice-width:768px) and (maxdevice-width:1024px) and</span>
<span style="color: #00AA00;">&#40;</span>orientation<span style="color: #00AA00;">:</span><span style="color: #993333;">portrait</span><span style="color: #00AA00;">&#41;</span> <span style="color: #00AA00;">&#123;</span>...<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Desktops und Laptops:</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;"><span style="color: #a1a100;">@media only screen and (minwidth: 1224px){... }</span></pre></div></div>

<p>Große Monitore:</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;"><span style="color: #a1a100;">@media only screen and (minwidth:1824px){... }</span></pre></div></div>

<p>Da es bei mobilen Endgeräten wie Smartphones und Tablets mit der Portrait- und der Landscape-View zudem zwei unterschiedliche Ansichtsformate zur Darstellung der Inhalte gibt, können Sie mit orientation die Merkmale height und width miteinander vergleichen. Wenn height größer oder gleich width ist, besitzt die Darstellung den Wert portrait, andernfalls den Wert landscape. Erkannt wird die Ansicht am Gerät übrigens durch einen Bewegungssensor. Sollte die Gestaltung einer Webseite auf diesen beiden Ansichtsformaten große Unterschiede aufweisen, können Sie jedem Format folgendermaßen eine eigene CSS-Datei zuweisen:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">media</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;all and (orientation:portrait)&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;portrait.css&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">media</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;all and (orientation:landscape)&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;landscape.css&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<p>Neben der Integration dieser <a href="http://www.w3.org/TR/css3-mediaqueries/" target="_blank">Media-Query-Regeln</a> ist es wichtig, dass Sie dem Viewport-Metatag innerhalb des head-Elementes eines HTML-Dokumentes initial weitere Eigenschaften zur optimierten Darstellung der Inhalte zuweisen. Damit können Sie die Darstellung und Skalierung der Inhalte auf Smartphones und Tablets gleichermaßen festlegen. Wenn Sie all diese oder zumindest einen Großteil dieser Regeln für das Anlegen von Regeln mittels Media Queries befolgen, können sie ab nun mit der Individualisierung der Styles für die entsprechenden Viewportgrößen beginnen. Unabhängig von den Möglichkeiten, gibt es aber auch bestimmte Fallstricke denen man sich vorher bewusst sein sollte, um nicht am Ende eines Projektes eine böse Überraschung zu erleben, die am Ende dazu führt, dass bestimmte Gestaltungsaspekte nicht realisiert werden können. Welche Probleme und Risiken hier auf den dafür Verantwortlichen warten können, zeigt der folgende Absatz.</p>
<p><strong>Was gilt es beim Einsatz von Media Queries für ein responsives Design zu beachten</strong></p>
<p>Aufgrund der möglichen unterschiedlichen Viewports der Benutzer muss ein auf Basis von Media Queries umgesetztes Design einer Webseite einige wichtige Aspekte berücksichtigen, die unabhängig vom Viewport eine weiterhin optimale Benutzerführung gewährleisten. Daher sollten Sie zumindest folgende Aspekte immer im Auge haben, um somit gegebenenfalls je nach Viewport neue CSS-Eigenschaften anlegen zu können:</p>
<ul>
<li>
Anpassung der Schriftgrößen ( Da die Lesbarkeit von Texten auf unterschiedlichen Endgeräten nicht immer identisch ist, sollte man insbesondere auf kleineren Smartphone-Displays die vorher für einen Desktop-PC definierten Schriftgrößen, den Anforderungen entsprechend anpassen. )
</li>
<li>
Darstellung von Links und Buttons ( Maße und Kontraste müssen nicht zuletzt aufgrund der Mobilität von Endgeräten größer sein. Gründe hierfür sind bspw. die unterschiedliche Fingergröße der User anstatt des stets gleich großen Mauszeigers und die Witterungsbedingungen wie Sonneneinstrahlung etc. )
</li>
<li>
Größe und Ausrichtung von Bildern ( Kleinere Viewportgrößen ermöglichen schlecht die Darstellung großer Elemente wie bspw. Bilder oder Videos, daher Größenangaben relativ auszeichnen, dass Problem bei dieser Herangehensweise ist das sich diese ursprünglich große Bilddatei zwar visuell in den Maßen (Höhe und Breite) anpassen lässt, die zu ladende Dateigröße allerdings bleibt unabhängig vom Ausgabemedium gleich. Bei mobilen Geräten und den aktuellen Übertragungsraten können einige Hundert Kilobyte für solche Bilddateien das Ladeverhalten durchaus signifikant beeinflussen. Ein anderer Ansatz wäre es, für die Ausgabe verschiedener Bildergrößen in responsive Webdesigns den Adaptive Images-Ansatz zu verfolgen. Hier werden mit Hilfe von PHP und JavaScript automatisch verschiedene Bildgrößen für die verschiedenen Viewportgrößen erzeugt. )
</li>
<li>
Ausrichtung und Position von Elementen ( So sollten Formular-Elemente auf mobilen Endgeräten eher unter-, als neben einander ausgerichtet werden. Bei der Darstellung von Tabellen, bietet es sich aufgrund der Platzverhältnisse an die Tabellenköpfe eher linksbündig auszurichten, anstatt wie gewohnt oberhalb der Zeilen. Denn so besitzen Sie die Möglichkeit mittels floating, die einzelnen Tabellenzellen direkt unter dem Tabellenkopf dieser Zeile abzubilden. )
</li>
<li>
Reduzierung oder Vergrößerung des Whitespace ( Tablet vs. Smartphone )
</li>
<li>
Aus- bzw. Einblenden von via Conditional Comments eingeblendeten Dateien ( IE 6 &#038; 7 sind auf mobilen Endgeräten nicht vertreten. )
</li>
</ul>
<p>Wer sicher dieser Risiken bewusst wird, der wird über lang oder kurz nicht um die Diskussion herum kommen, welcher Möglichkeiten es für die ideale Vorgehensweise bei der Umsetzung eines responsiven Designs gibt. Ein möglicher Ansatz wäre es das mobile Design als Grundlage für die Gestaltung der anderen Darstellungsvarianten (Tablet, Desktop) heranzuziehen. Eine solche Vorgehensweise, auch &#8220;mobile first&#8221;, bringt eine vollkommen andere Herangehensweise für Webdesigner und Entwickler mit sich. Und das führt dazu, dass man aufgrund der kleineren Displays auf mobilen Endgeräten sehr viel weniger Platz zur Verfügung hat, womit man sich auf die wichtigsten inhaltlichen und funktionellen Features einer Webseite konzentrieren muss. Dazu sollte man sich u.a. unbedingt vor Beginn des Desingprozesses mit Fragen wie den folgenden: Was möchte ich mit der Webseite erreichen? Welche inhaltlichen und visuellen Elemente sind dafür dringend notwendig (und welche nicht)? Sollten diese Aspekte im vornherein geklärt worden sein, kann man dann mittels Media Queries und den entsprechenden CSS Eigenschaften die gewünschten <a href="http://mediaqueri.es/" target="_blank">responsiven Designs</a> umsetzen.</p>
<p><strong>Media Queries und die Browserwelt</strong></p>
<p>Die Daseinsberechtigung einer CSS Eigenschaft richtet sich in erster Linie nach der Unterstützung durch die Browser. Diese ist bei Media Queries mittlerweile recht beachtlich, wobei Opera bereits seit Version 8 mit Media Queries umgehen kann. Firefox ist dazu seit Version 3.5 in der Lage. Da Safaris Rendering-Engine-Webkit außerdem in Googles Chrome zum Einsatz kommt, ist auch bei diesen beiden Browsern die Unterstützung gegeben. Aus dem Hause Microsoft, gibt es erst seit der aktuellen Version 9 Support für CSS Media Queries.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fresponsive-webdesign-mit-media-queries%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fresponsive-webdesign-mit-media-queries%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fresponsive-webdesign-mit-media-queries%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fresponsive-webdesign-mit-media-queries%2F&amp;count=none&amp;text=Responsive%20Webdesign%20mit%20Media%20Queries" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fresponsive-webdesign-mit-media-queries%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fresponsive-webdesign-mit-media-queries%2F&amp;count=none&amp;text=Responsive%20Webdesign%20mit%20Media%20Queries" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fresponsive-webdesign-mit-media-queries%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fresponsive-webdesign-mit-media-queries%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2Fresponsive-webdesign-mit-media-queries%2F&amp;title=Responsive%20Webdesign%20mit%20Media%20Queries" id="wpa2a_2"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/responsive-webdesign-mit-media-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSSGURU.DE Redesign mit Gewinnspiel</title>
		<link>http://blog.cssguru.de/cssguru-de-redesign-mit-gewinnspiel/</link>
		<comments>http://blog.cssguru.de/cssguru-de-redesign-mit-gewinnspiel/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 17:13:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://blog.cssguru.de/?p=431</guid>
		<description><![CDATA[Unser altes Design hat ausgedient und räumt den Weg für einen frischen Anstrich.
Die neue Seite soll nicht nur optisch Ausdrucksstärke verleihen sondern auch das Zusammenstellen von individuelle Projekte erleichtern.
Neben Design zu HTML/CSS Konvertierung bieten wir jetzt auch die Implementation in verschiedenen Content Management Systemen an. Ausserdem gibt es noch ein kleines Gewinnspiel mit folgenden Preisen:
1 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.cssguru.de/wp-content/uploads/touchpad.png"><img class="alignright size-full wp-image-436" title="touchpad" src="http://blog.cssguru.de/wp-content/uploads/touchpad.png" alt="" width="207" height="283" /></a>Unser altes Design hat ausgedient und räumt den Weg für einen frischen Anstrich.<br />
Die neue Seite soll nicht nur optisch Ausdrucksstärke verleihen sondern auch das Zusammenstellen von individuelle Projekte erleichtern.<br />
Neben Design zu HTML/CSS Konvertierung bieten wir jetzt auch die Implementation in verschiedenen Content Management Systemen an. Ausserdem gibt es noch ein kleines Gewinnspiel mit folgenden Preisen:</p>
<p><strong>1 x ein <a href="http://h41112.www4.hp.com/promo/webos/de/de/tablet/touchpad.html" target="_blank">HP Touchpad</a> Tablet PC</strong><br />
<strong>5 x je ein <a href="http://www.webstandards-magazin.de/" target="_blank">Webstandards-Magazin</a> Jahres Abo</strong><br />
<span id="more-431"></span><br />
Um an dem Gewinnspiel mitzumachen, müsst Du einfach nur <a href="http://twitter.com/#!/cssgurunews/status/118751715121037314" target="_blank">diesen Tweet</a> retweeten.<br />
Wir werden alle Tweets welche unsere URL beinhalten aggregieren und die Gewinner dann per Zufall auswählen.<br />
Das Gewinnspiel endet am 31. Oktober 2011. Die Gewinner werden hier im Blog sowie über unseren <a href="http://twitter.com/#!/cssgurunews">Twitter-Account</a> bekannt gegeben.</p>
<p>Wir wünschen allen Viel Glück.</p>
<hr />
<br />
<strong>Update: 31.10.2011</strong></p>
<p><strong>Und hier die Gewinner:</strong><br />
Das HP Touchpad geht an: <a href="http://twitter.com/#!/FollowBackBear">FollowBackBear</a><br />
Je ein Webstandards-Magazin Abo geht an:<br />
<a href="http://twitter.com/#!/Douth">Douth</a>, <a href="http://twitter.com/#!/newmediafactory">newmediafactory</a>, <a href="http://twitter.com/#!/red_pixel">red_pixel</a>, <a href="https://twitter.com/#!/knieblond">knieblond</a> und <a href="https://twitter.com/#!/happybeaglede">happybeagleDE</a><br />
Bitte meldet euch bei uns und teilt uns eure Adresse mit, damit wir die Gewinne verschicken können.<br />
Vielen Dank noch einmal an alle, die mitgemacht haben!</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fcssguru-de-redesign-mit-gewinnspiel%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fcssguru-de-redesign-mit-gewinnspiel%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fcssguru-de-redesign-mit-gewinnspiel%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fcssguru-de-redesign-mit-gewinnspiel%2F&amp;count=none&amp;text=CSSGURU.DE%20Redesign%20mit%20Gewinnspiel" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fcssguru-de-redesign-mit-gewinnspiel%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fcssguru-de-redesign-mit-gewinnspiel%2F&amp;count=none&amp;text=CSSGURU.DE%20Redesign%20mit%20Gewinnspiel" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fcssguru-de-redesign-mit-gewinnspiel%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fcssguru-de-redesign-mit-gewinnspiel%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2Fcssguru-de-redesign-mit-gewinnspiel%2F&amp;title=CSSGURU.DE%20Redesign%20mit%20Gewinnspiel" id="wpa2a_4"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/cssguru-de-redesign-mit-gewinnspiel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tooltip ohne Bilder</title>
		<link>http://blog.cssguru.de/tooltip-ohne-bilder/</link>
		<comments>http://blog.cssguru.de/tooltip-ohne-bilder/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 17:50:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://blog.cssguru.de/?p=442</guid>
		<description><![CDATA[Tooltips werden immer häufig in Webseiten zum Einsatz gebracht. Diese benötigen meistens ein kleines Dreieck als Bild um zu sehen worauf sich das Tooltip bezieht. Ich habe allerdings letztens an einem Tooltip gebaut welches komplett ohne Bilder auskommt. Diese Herausforderung führte mich zu den experimentellen Ansatz mit polygonalen CSS. Ich zeige in diesem Artikel allerdings [...]]]></description>
			<content:encoded><![CDATA[<p>Tooltips werden immer häufig in Webseiten zum Einsatz gebracht. Diese benötigen meistens ein kleines Dreieck als Bild um zu sehen worauf sich das Tooltip bezieht. Ich habe allerdings letztens an einem Tooltip gebaut welches komplett ohne Bilder auskommt. Diese Herausforderung führte mich zu den experimentellen Ansatz mit polygonalen CSS. Ich zeige in diesem Artikel allerdings nur das HTML/CSS Markup auf:<br />
<span id="more-442"></span></p>
<style>
.tooltip_white {
    background: #FFF;
    border: 1px solid #CCC;
    border-right-width: 3px;
    border-bottom-width: 3px; 
}
.tooltip_white .tooltip__pointer__up,
.tooltip_white .tooltip__pointer__bottom,
.tooltip_white .tooltip__pointer__left,
.tooltip_white .tooltip__pointer__right {
    border: 1px solid #CCC; 
}   
.tooltip_white .tooltip__pointer__up__i,
.tooltip_white .tooltip__pointer__bottom__i,
.tooltip_white .tooltip__pointer__left__i,
.tooltip_white .tooltip__pointer__right__i {
    border: 1px solid #FFF; 
}
.tooltip {
    position: absolute;
    padding: 10px 10px 0 10px;
    max-width: 250px;
    min-width: 200px;
    font-size: 11px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.tooltip .tooltip__pointer__up,
.tooltip .tooltip__pointer__bottom,
.tooltip .tooltip__pointer__left,
.tooltip .tooltip__pointer__right,
.tooltip .tooltip__pointer__up__i,
.tooltip .tooltip__pointer__bottom__i,
.tooltip .tooltip__pointer__left__i,
.tooltip .tooltip__pointer__right__i {
    position: absolute;
    width: 0;
    height: 0;
    border-bottom-width: 0; 
}
.tooltip .tooltip__pointer__bottom {
    left: 20px;
    bottom: -10px;
    margin-left: -7px;
    border-top-width: 10px;
    border-right: 12px solid transparent;
    border-left: 10px solid transparent; 
}
.tooltip .tooltip__pointer__bottom__i {
    top: -10px;
    bottom: auto;
    left: -9px;
    border-top-width: 9px;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent; 
}
.tooltip .tooltip__pointer__up {
    left: 20px;
    top: -10px;
    margin-left: -7px;
    border-top-width: 0;
    border-bottom-width: 10px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent; 
}
.tooltip .tooltip__pointer__up__i {
    top: 2px;
    bottom: auto;
    left: -9px;
    border-top-width: 0;
    border-bottom-width: 9px;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent; 
}
.tooltip .tooltip__pointer__left {
    left: -10px;
    top: 7px;
    border-top: 10px solid transparent;
    border-bottom: 12px solid transparent;
    border-right-width: 10px;
    border-left-width: 0; 
}
.tooltip .tooltip__pointer__left__i {
    left: 1px;
    top: -9px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right-width: 9px;
    border-left-width: 0; 
}
.tooltip .tooltip__pointer__right {
    right: -10px;
    top: 7px;
    border-top: 10px solid transparent;
    border-bottom: 12px solid transparent;
    border-right-width: 0;
    border-left-width: 10px; 
}
.tooltip .tooltip__pointer__right__i {
    right: 1px;
    top: -9px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right-width: 0;
    border-left-width: 9px; 
}
.tooltip .tooltip__close {
    position: relative;
    top: -4px;
    font-size: 11px;
    float: right;
    color: #999; 
}
</style>
<div style="position: relative; height: 50px; padding-top: 10px;">
<div class="tooltip tooltip_white">
  Ich bin ein Tooltip ohne Einsatz von Bildern.</p>
<div class="tooltip__pointer__up">
<div class="tooltip__pointer__up__i"></div>
</p></div>
</div>
</div>
<p>Hier einmal das HTML</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;tooltip tooltip_white&quot;</span>&gt;</span>
  Ich bin ein Tooltip...
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;tooltip__pointer__up&quot;</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;tooltip__pointer__up__i&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></div></div>

<p>Die Klasse &#8220;tooltip&#8221; beinhaltet alles um das Tooltip zu generieren und die Klasse &#8220;tooltip_white&#8221; beinhaltet die farbliche gestaltung. So ist es einfacher Tooltips in verschiedenen Farben zu bauen. Mit den beiden &#8220;tooltip__pointer&#8221; Klassen wird dann das Dreieck erstellt.<br />
Der Trick dabei ist, dass man die Border-Breite bei dem Dreieck zu der Richtung zu welcher er zeigen soll immer auf 0 setzt. Ist vielleicht nicht einfach zu erklären, deshalb hier das CSS:</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Farben definieren */</span>
<span style="color: #6666ff;">.tooltip_white</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span>;
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#CCC</span>;
    <span style="color: #000000; font-weight: bold;">border-right-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span>;
    <span style="color: #000000; font-weight: bold;">border-bottom-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span>; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip_white</span> .tooltip__pointer__up<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip_white</span> .tooltip__pointer__bottom<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip_white</span> .tooltip__pointer__left<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip_white</span> <span style="color: #6666ff;">.tooltip__pointer__right</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#CCC</span>; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip_white</span> .tooltip__pointer__up__i<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip_white</span> .tooltip__pointer__bottom__i<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip_white</span> .tooltip__pointer__left__i<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip_white</span> <span style="color: #6666ff;">.tooltip__pointer__right__i</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#FFF</span>; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Tooltip bauen */</span>
<span style="color: #6666ff;">.tooltip</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span>;
    <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">10px</span> 0 <span style="color: #933;">10px</span>;
    <span style="color: #000000; font-weight: bold;">max-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">250px</span>;
    <span style="color: #000000; font-weight: bold;">min-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">200px</span>;
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">11px</span>;
    -moz-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span>;
    -webkit-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span>;
    border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span>;
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> .tooltip__pointer__up<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip</span> .tooltip__pointer__bottom<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip</span> .tooltip__pointer__left<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip</span> .tooltip__pointer__right<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip</span> .tooltip__pointer__up__i<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip</span> .tooltip__pointer__bottom__i<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip</span> .tooltip__pointer__left__i<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__pointer__right__i</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span>;
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> 0;
    <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> 0;
    <span style="color: #000000; font-weight: bold;">border-bottom-width</span><span style="color: #00AA00;">:</span> 0; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__pointer__bottom</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span>;
    <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-10px</span>;
    <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-7px</span>;
    <span style="color: #000000; font-weight: bold;">border-top-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span>;
    <span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__pointer__bottom__i</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-10px</span>;
    <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span>;
    <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-9px</span>;
    <span style="color: #000000; font-weight: bold;">border-top-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span>;
    <span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__pointer__up</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span>;
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-10px</span>;
    <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-7px</span>;
    <span style="color: #000000; font-weight: bold;">border-top-width</span><span style="color: #00AA00;">:</span> 0;
    <span style="color: #000000; font-weight: bold;">border-bottom-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span>;
    <span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__pointer__up__i</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2px</span>;
    <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span>;
    <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-9px</span>;
    <span style="color: #000000; font-weight: bold;">border-top-width</span><span style="color: #00AA00;">:</span> 0;
    <span style="color: #000000; font-weight: bold;">border-bottom-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span>;
    <span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__pointer__left</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-10px</span>;
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">7px</span>;
    <span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-right-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span>;
    <span style="color: #000000; font-weight: bold;">border-left-width</span><span style="color: #00AA00;">:</span> 0; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__pointer__left__i</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span>;
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-9px</span>;
    <span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-right-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span>;
    <span style="color: #000000; font-weight: bold;">border-left-width</span><span style="color: #00AA00;">:</span> 0; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__pointer__right</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-10px</span>;
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">7px</span>;
    <span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-right-width</span><span style="color: #00AA00;">:</span> 0;
    <span style="color: #000000; font-weight: bold;">border-left-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span>; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__pointer__right__i</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span>;
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-9px</span>;
    <span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span>;
    <span style="color: #000000; font-weight: bold;">border-right-width</span><span style="color: #00AA00;">:</span> 0;
    <span style="color: #000000; font-weight: bold;">border-left-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">9px</span>; 
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.tooltip</span> <span style="color: #6666ff;">.tooltip__close</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span>;
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-4px</span>;
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">11px</span>;
    <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span>;
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#999</span>; 
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Ich habe hier alle möglichen Variationen erstellt (Tooltip-Dreieck oben, recht, unten und links) deshalb ist es einwenig mehr Quelltext geworden <img src='http://blog.cssguru.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Ausserdem bitte beachten, dass der Tooltip immer &#8220;absolut&#8221; positioniert ist, also immer ein DIV mit &#8220;position: relative;&#8221; ausserhalb benutzen.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Ftooltip-ohne-bilder%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Ftooltip-ohne-bilder%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Ftooltip-ohne-bilder%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Ftooltip-ohne-bilder%2F&amp;count=none&amp;text=Tooltip%20ohne%20Bilder" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Ftooltip-ohne-bilder%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Ftooltip-ohne-bilder%2F&amp;count=none&amp;text=Tooltip%20ohne%20Bilder" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Ftooltip-ohne-bilder%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Ftooltip-ohne-bilder%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2Ftooltip-ohne-bilder%2F&amp;title=Tooltip%20ohne%20Bilder" id="wpa2a_6"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/tooltip-ohne-bilder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 10 Vorschau</title>
		<link>http://blog.cssguru.de/internet-explorer-10-vorschau/</link>
		<comments>http://blog.cssguru.de/internet-explorer-10-vorschau/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 13:01:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.cssguru.de/?p=424</guid>
		<description><![CDATA[Nur knapp vier Wochen nach dem Start des Internet Explorer 9, meldet sich Microsoft mit einer Vorschau des Internet Explorer 10 zurück.
Die erste Download Version findet man auf der IE Test Drive Seite.
Laut Microsoft liegt der Focus auf der Hardware-Beschleunigung, welche schon mit der Veröffentlichung der IE9 angepriesen würde.
Ausserdem wird weiterhin an einer verbesserten HTML5 [...]]]></description>
			<content:encoded><![CDATA[<p>Nur knapp vier Wochen nach dem Start des Internet Explorer 9, meldet sich Microsoft mit einer Vorschau des Internet Explorer 10 zurück.<br />
Die erste Download Version findet man auf der <a href="http://ie.microsoft.com/testdrive/" target="_blank">IE Test Drive Seite</a>.</p>
<p>Laut Microsoft liegt der Focus auf der Hardware-Beschleunigung, welche schon mit der Veröffentlichung der IE9 angepriesen würde.<br />
Ausserdem wird weiterhin an einer verbesserten HTML5 und CSS3 Unterstützung gearbeitet wie z.b. an der Implementation von CSS-Gradients und Flexiblen Box-Layouts.</p>
<p>Obwohl es noch keinen endgültigen Termin für den IE10 gibt, glaubt man, dass die neue IE Version zusammen mit Windows 8 irgendwann im nächsten Jahr erscheinen wird.</p>
<p><iframe title="YouTube video player" width="480" height="300" src="http://www.youtube.com/embed/3870_toHLjo" frameborder="0" allowfullscreen></iframe></p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-10-vorschau%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-10-vorschau%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-10-vorschau%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-10-vorschau%2F&amp;count=none&amp;text=Internet%20Explorer%2010%20Vorschau" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-10-vorschau%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-10-vorschau%2F&amp;count=none&amp;text=Internet%20Explorer%2010%20Vorschau" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-10-vorschau%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-10-vorschau%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-10-vorschau%2F&amp;title=Internet%20Explorer%2010%20Vorschau" id="wpa2a_8"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/internet-explorer-10-vorschau/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 4 RC1 erschienen</title>
		<link>http://blog.cssguru.de/firefox-4-rc-erschienen/</link>
		<comments>http://blog.cssguru.de/firefox-4-rc-erschienen/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 13:24:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.cssguru.de/?p=419</guid>
		<description><![CDATA[Mozilla hat mit dem &#8220;Release Candidate&#8221; die letzte Vorversion von Firefox 4 veröffentlicht. Der RC1 hat alle Funktionen des fertigen Firefox 4 und wird lediglich ein letztes Mal auf Fehler überprüft. Zu den Verbesserungen zählen neben einer neuen JavaScript-Engine auch ein überarbeitetes User Interface. Dank Hardware-Beschleunigung werden bestimmte Prozesse an den Grafikprozessor des Rechners ausgelagert [...]]]></description>
			<content:encoded><![CDATA[<p>Mozilla hat mit dem &#8220;Release Candidate&#8221; die letzte Vorversion von Firefox 4 veröffentlicht. Der RC1 hat alle Funktionen des fertigen Firefox 4 und wird lediglich ein letztes Mal auf Fehler überprüft. Zu den Verbesserungen zählen neben einer neuen JavaScript-Engine auch ein überarbeitetes User Interface. Dank Hardware-Beschleunigung werden bestimmte Prozesse an den Grafikprozessor des Rechners ausgelagert um 3D-Grafiken flüssiger darzustellen.<br />
Die finale Version soll noch vor Ende des laufenden Monats erscheinen, meinte der Chefentwickler Mike Beltzner.</p>
<p><strong><a href="http://www.mozilla.com/de/firefox/RC/">Hier gehts zum Download</a></strong></p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Ffirefox-4-rc-erschienen%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Ffirefox-4-rc-erschienen%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Ffirefox-4-rc-erschienen%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Ffirefox-4-rc-erschienen%2F&amp;count=none&amp;text=Firefox%204%20RC1%20erschienen" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Ffirefox-4-rc-erschienen%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Ffirefox-4-rc-erschienen%2F&amp;count=none&amp;text=Firefox%204%20RC1%20erschienen" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Ffirefox-4-rc-erschienen%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Ffirefox-4-rc-erschienen%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2Ffirefox-4-rc-erschienen%2F&amp;title=Firefox%204%20RC1%20erschienen" id="wpa2a_10"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/firefox-4-rc-erschienen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>W3C stellt HTML5 Logo vor</title>
		<link>http://blog.cssguru.de/w3c-stellt-html5-logo-vor/</link>
		<comments>http://blog.cssguru.de/w3c-stellt-html5-logo-vor/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 19:34:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.cssguru.de/?p=403</guid>
		<description><![CDATA[Das World Wide Web Consortium (W3C) hat das offizielle Logo von HTML5 vorgestellt.
Wie die Organisation mitteilte, steht das Logo auch für die große Bedeutung, die der HTML5-Standard sowohl auf technologischer Seite aber auch in der Strategie von Unternehmen und im Marketing habe. Es soll ausserdem nicht nur für die neue HTML-Version selbst stehen, sondern auch [...]]]></description>
			<content:encoded><![CDATA[<p>Das World Wide Web Consortium (W3C) hat das offizielle Logo von HTML5 vorgestellt.<br />
Wie die Organisation mitteilte, steht das Logo auch für die große Bedeutung, die der HTML5-Standard sowohl auf technologischer Seite aber auch in der Strategie von Unternehmen und im Marketing habe. Es soll ausserdem nicht nur für die neue HTML-Version selbst stehen, sondern auch für den Einsatz von Cascading Style Sheets (CSS), Scalable Vector Graphics (SVG) und dem Web Open Font Format (WOFF).</p>
<p><a href="http://blog.cssguru.de/wp-content/uploads/html5.png"><img src="http://blog.cssguru.de/wp-content/uploads/html5.png" alt="" title="html5" width="479" height="343" class="alignnone size-full wp-image-406" /></a></p>
<p>Hier nochmal der Link zur offiziellen Seite: <a href="http://www.w3.org/html/logo/">http://www.w3.org/html/logo/</a></p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fw3c-stellt-html5-logo-vor%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fw3c-stellt-html5-logo-vor%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fw3c-stellt-html5-logo-vor%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fw3c-stellt-html5-logo-vor%2F&amp;count=none&amp;text=W3C%20stellt%20HTML5%20Logo%20vor" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fw3c-stellt-html5-logo-vor%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fw3c-stellt-html5-logo-vor%2F&amp;count=none&amp;text=W3C%20stellt%20HTML5%20Logo%20vor" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fw3c-stellt-html5-logo-vor%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fw3c-stellt-html5-logo-vor%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2Fw3c-stellt-html5-logo-vor%2F&amp;title=W3C%20stellt%20HTML5%20Logo%20vor" id="wpa2a_12"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/w3c-stellt-html5-logo-vor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIV höhe automatisch an Browserfenster anpassen</title>
		<link>http://blog.cssguru.de/div-hohe-automatisch-an-browserfenster-anpassen/</link>
		<comments>http://blog.cssguru.de/div-hohe-automatisch-an-browserfenster-anpassen/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 16:22:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.cssguru.de/?p=412</guid>
		<description><![CDATA[In diesem kleinem Tutorial werde ich erklären, wie man mit Hilfe von CSS ein DIV auf die 100% Höhe des Browsersfesnters setzt.
Es handelt sich hier um ein sehr einfaches Beispiel, welches aber auch in komplizierten Layouts verwendet werden kann.
Wir gehen davon aus, dass es ein DIV mit der Klasse &#8220;container&#8221; gibt, welches die gleiche Höhe [...]]]></description>
			<content:encoded><![CDATA[<p>In diesem kleinem Tutorial werde ich erklären, wie man mit Hilfe von CSS ein DIV auf die 100% Höhe des Browsersfesnters setzt.<br />
Es handelt sich hier um ein sehr einfaches Beispiel, welches aber auch in komplizierten Layouts verwendet werden kann.</p>
<p>Wir gehen davon aus, dass es ein DIV mit der Klasse &#8220;container&#8221; gibt, welches die gleiche Höhe wie auch das Browserfenster haben soll.<br />
Im CSS geben wir zuerst dem HTML und  Body-Tag eine Höhe von 100%  (diese wird leider oft übersehen):<br />
<span id="more-412"></span></p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;">html<span style="color: #00AA00;">,</span> body <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span>;
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Sobald dieses vorhanden ist, muss man noch die Höhe für den entsprechenden DIV-Container hinzufügen.<br />
Am besten funktioniert es mit dem Parameter &#8220;min-height: 100%;&#8221;</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;">div<span style="color: #6666ff;">.container</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">min-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span>;
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Das wars dann auch.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fdiv-hohe-automatisch-an-browserfenster-anpassen%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fdiv-hohe-automatisch-an-browserfenster-anpassen%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fdiv-hohe-automatisch-an-browserfenster-anpassen%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fdiv-hohe-automatisch-an-browserfenster-anpassen%2F&amp;count=none&amp;text=DIV%20h%C3%B6he%20automatisch%20an%20Browserfenster%20anpassen" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fdiv-hohe-automatisch-an-browserfenster-anpassen%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fdiv-hohe-automatisch-an-browserfenster-anpassen%2F&amp;count=none&amp;text=DIV%20h%C3%B6he%20automatisch%20an%20Browserfenster%20anpassen" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fdiv-hohe-automatisch-an-browserfenster-anpassen%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fdiv-hohe-automatisch-an-browserfenster-anpassen%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2Fdiv-hohe-automatisch-an-browserfenster-anpassen%2F&amp;title=DIV%20h%C3%B6he%20automatisch%20an%20Browserfenster%20anpassen" id="wpa2a_14"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/div-hohe-automatisch-an-browserfenster-anpassen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Progress Bar mit CSS gestalten</title>
		<link>http://blog.cssguru.de/progress-bar-mit-css-gestalten/</link>
		<comments>http://blog.cssguru.de/progress-bar-mit-css-gestalten/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 15:28:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css fortschrittsanzeige]]></category>
		<category><![CDATA[css progress bar]]></category>

		<guid isPermaLink="false">http://www.cssguru.de/?p=378</guid>
		<description><![CDATA[Heute mal ein kleines Tutorial, im welchem es um das Gestalten einer &#8220;Progress Bar&#8221; (Fortschrittsanzeige) handelt. Damit kann man z.b. den Status eines Datei-uploads visualisieren. Als erstes kommt die HTML-Struktur welche so aussieht:

&#60;div class=&#34;progress_bar&#34;&#62;
    &#60;strong&#62;25%&#60;/strong&#62;
    &#60;span style=&#34;width: 25%;&#34;&#62;&#38;nbsp;&#60;/span&#62;
&#60;/div&#62;

 
Diese besteht neben dem DIV aus einem STRONG und einem SPAN [...]]]></description>
			<content:encoded><![CDATA[<p>Heute mal ein kleines Tutorial, im welchem es um das Gestalten einer &#8220;Progress Bar&#8221; (Fortschrittsanzeige) handelt. Damit kann man z.b. den Status eines Datei-uploads visualisieren. Als erstes kommt die HTML-Struktur welche so aussieht:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;progress_bar&quot;</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>25%<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;width: 25%;&quot;</span>&gt;</span><span style="color: #ddbb00;">&amp;nbsp;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></div></div>

<p> <span id="more-378"></span><br />
Diese besteht neben dem DIV aus einem STRONG und einem SPAN Tag.<br />
Der STRONG Tag zeigt den aktuelen Status in Prozent an.<br />
Der SPAN zeigt den Balken an, welcher per Inline-Style definiert wird.<br />
Im Inline-Style kann man dann mit Java-Script dynamisch den Fortschritt anzeigen,  um z.b. ein Datei-Upload zu simulieren. </p>
<p>Und hier das CSS dazu:</p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;"><span style="color: #6666ff;">.progress_bar</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span>;
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> 0 0 <span style="color: #933;">15px</span> 0;
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">250px</span>;
  <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#CCC</span>;
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span>;  
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.progress_bar</span> span <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span>;
  <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> 0;
  <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> 0;
  <span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span>;
  <span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#AAF0FF</span>;
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.progress_bar</span> strong <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span>;
  <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">10</span>;
  <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span>;
  <span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span>;
  <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span>;
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Das Ergbniss sieht dann so aus:</p>
<style>
 .progress_bar {
  position: relative;
  margin: 0 0 15px 0;
  width: 250px;
  border: 1px solid #CCC;
  background: #FFF;
}
.progress_bar span {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 20px;
  background-color: #AAF0FF;
}
.progress_bar strong {
  position: relative;
  z-index: 10;
  display: block;
  line-height: 20px;
  text-align: center;
}
</style>
<div class="progress_bar">
<strong>25%</strong><span style="width: 25%;">&nbsp;</span>
</div>
<div class="progress_bar">
<strong>50%</strong><span style="width: 50%;">&nbsp;</span>
</div>
<div class="progress_bar">
<strong>75%</strong><span style="width: 75%;">&nbsp;</span>
</div>
<p>Man könnte hier noch einwenig herumspielen und einen Schatten oder einen Verlauf bei dem Fortschrittsbalken hinzufügen.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fprogress-bar-mit-css-gestalten%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Fprogress-bar-mit-css-gestalten%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fprogress-bar-mit-css-gestalten%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fprogress-bar-mit-css-gestalten%2F&amp;count=none&amp;text=Progress%20Bar%20mit%20CSS%20gestalten" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Fprogress-bar-mit-css-gestalten%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Fprogress-bar-mit-css-gestalten%2F&amp;count=none&amp;text=Progress%20Bar%20mit%20CSS%20gestalten" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fprogress-bar-mit-css-gestalten%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Fprogress-bar-mit-css-gestalten%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2Fprogress-bar-mit-css-gestalten%2F&amp;title=Progress%20Bar%20mit%20CSS%20gestalten" id="wpa2a_16"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/progress-bar-mit-css-gestalten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 9 Beta</title>
		<link>http://blog.cssguru.de/internet-explorer-9-beta/</link>
		<comments>http://blog.cssguru.de/internet-explorer-9-beta/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 11:56:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[ie9]]></category>

		<guid isPermaLink="false">http://www.cssguru.de/?p=367</guid>
		<description><![CDATA[Microsoft hat gestern Abend eine erste Betaversion des Internet Explorer 9 für Windows 7 und Vista zum download vorgestellt.
Auf dem ersten Blick erkennt man, dass die Oberfläche jetzt viel schlanker ist. Zu den Bedienelementen zählen ein Vor- und Zurück-Knopf, eine schmale kombinierte Adresseingabe sowie ein Suche mit Neuladen- und Abbrechen-Button. Rechts finden sich drei Buttons [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft hat gestern Abend eine erste Betaversion des Internet Explorer 9 für Windows 7 und Vista zum <a href="http://www.internet-explorer9.de/">download</a> vorgestellt.<br />
Auf dem ersten Blick erkennt man, dass die Oberfläche jetzt viel schlanker ist. Zu den Bedienelementen zählen ein Vor- und Zurück-Knopf, eine schmale kombinierte Adresseingabe sowie ein Suche mit Neuladen- und Abbrechen-Button. Rechts finden sich drei Buttons für Startseite, Lesezeichen und Einstellungen.<br />
<span id="more-367"></span><br />
<a href="http://blog.cssguru.de/wp-content/uploads/ie9beta.png"><img src="http://blog.cssguru.de/wp-content/uploads/ie9beta.png" alt="" title="ie9beta" width="480" height="367" class="alignnone size-full wp-image-375" /></a><br />
Neben der Geschwindigkeit (neue JavaScript-Engine) und Sicherheit würde auch viel Wert auf die Unterstützung von HTML5 und CSS3 gelegt.<br />
So können z.b. HTML5-Medien mit den Codecs H.264, MP3 und Googles offenem WebM abspielen. Außerdem lassen sich mit SVG Bilder auch über HTML5-Canvas zeichnen. In Sachen CSS führt der IE9 unter anderem neue Selektoren, runde Ecken, mehrfache Hintergründe und Media Queries ein.</p>
<p>Mashable</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-9-beta%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-9-beta%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-9-beta%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-9-beta%2F&amp;count=none&amp;text=Internet%20Explorer%209%20Beta" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-9-beta%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-9-beta%2F&amp;count=none&amp;text=Internet%20Explorer%209%20Beta" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-9-beta%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-9-beta%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2Finternet-explorer-9-beta%2F&amp;title=Internet%20Explorer%209%20Beta" id="wpa2a_18"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/internet-explorer-9-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 jQuery Bildergalerie Plugins</title>
		<link>http://blog.cssguru.de/10-jquery-bildgalerien-plugins/</link>
		<comments>http://blog.cssguru.de/10-jquery-bildgalerien-plugins/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 19:27:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[bildergalerie]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://www.cssguru.de/?p=337</guid>
		<description><![CDATA[Bildergalerien kommen auf Websites immer wieder vor. Mit jQuery wird die Verwendung bzw. Einbindung immer einfacher.
Im folgenden Artikel möchte ich 10 jQuery Bildergalerie Plugins vorstellen:
Supersized


JQuery Lightbox

Galleria

Galleryview

s3Slider

slideViewer

Galleriffic

Nivo slider

Smooth Div Scroll

Easy Slider

]]></description>
			<content:encoded><![CDATA[<p>Bildergalerien kommen auf Websites immer wieder vor. Mit jQuery wird die Verwendung bzw. Einbindung immer einfacher.<br />
Im folgenden Artikel möchte ich 10 jQuery Bildergalerie Plugins vorstellen:</p>
<p><strong><a href="http://www.buildinternet.com/project/supersized/">Supersized</a></strong><br />
<a href="http://www.buildinternet.com/project/supersized/"><img src="http://blog.cssguru.de/wp-content/uploads/supersized.jpg" alt="" title="supersized" width="480" height="209" class="alignnone size-full wp-image-355" /></a><br />
<span id="more-337"></span><br />
<strong><a href="http://leandrovieira.com/projects/jquery/lightbox/">JQuery Lightbox</a></strong><br />
<a href="http://leandrovieira.com/projects/jquery/lightbox/"><img src="http://blog.cssguru.de/wp-content/uploads/jquery_lightbox.jpg" alt="" title="jquery_lightbox" width="480" height="360" class="alignnone size-full wp-image-338" /></a></p>
<p><strong><a href="http://galleria.aino.se/">Galleria</a></strong><br />
<a href="http://galleria.aino.se/"><img src="http://blog.cssguru.de/wp-content/uploads/galleria.jpg" alt="" title="galleria" width="480" height="273" class="alignnone size-full wp-image-341" /></a></p>
<p><strong><a href="http://spaceforaname.com/gallery-dark.html">Galleryview</a></strong><br />
<a href="http://spaceforaname.com/gallery-dark.html"><img src="http://blog.cssguru.de/wp-content/uploads/galleryview.jpg" alt="" title="galleryview" width="480" height="206" class="alignnone size-full wp-image-353" /></a></p>
<p><strong><a href="http://www.serie3.info/s3slider/">s3Slider</a></strong><br />
<a href="http://www.serie3.info/s3slider/"><img src="http://blog.cssguru.de/wp-content/uploads/s3Slider.jpg" alt="" title="s3Slider" width="480" height="200" class="alignnone size-full wp-image-343" /></a></p>
<p><strong><a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html">slideViewer</a></strong><br />
<a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html"><img src="http://blog.cssguru.de/wp-content/uploads/slideViewer.jpg" alt="" title="slideViewer" width="480" height="282" class="alignnone size-full wp-image-345" /></a></p>
<p><strong><a href="http://www.twospy.com/galleriffic/">Galleriffic</a></strong><br />
<a href="http://www.twospy.com/galleriffic/"><img src="http://blog.cssguru.de/wp-content/uploads/Galleriffic.jpg" alt="" title="Galleriffic" width="480" height="318" class="alignnone size-full wp-image-347" /></a></p>
<p><strong><a href="http://nivo.dev7studios.com/">Nivo slider</a></strong><br />
<a href="http://nivo.dev7studios.com/"><img src="http://blog.cssguru.de/wp-content/uploads/nivo_slider.jpg" alt="" title="nivo_slider" width="480" height="222" class="alignnone size-full wp-image-358" /></a></p>
<p><strong><a href="http://www.maaki.com/thomas/SmoothDivScroll/">Smooth Div Scroll</a></strong><br />
<a href="http://www.maaki.com/thomas/SmoothDivScroll/"><img src="http://blog.cssguru.de/wp-content/uploads/smooth_div_scroll.jpg" alt="" title="smooth_div_scroll" width="480" height="218" class="alignnone size-full wp-image-349" /></a></p>
<p><strong><a href="http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding">Easy Slider</a></strong><br />
<a href="http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding"><img src="http://blog.cssguru.de/wp-content/uploads/easy_sider.jpg" alt="" title="easy_slider" width="480" height="151" class="alignnone size-full wp-image-351" /></a></p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2F10-jquery-bildgalerien-plugins%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.cssguru.de%2F10-jquery-bildgalerien-plugins%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2F10-jquery-bildgalerien-plugins%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2F10-jquery-bildgalerien-plugins%2F&amp;count=none&amp;text=10%20jQuery%20Bildergalerie%20Plugins" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fblog.cssguru.de%2F10-jquery-bildgalerien-plugins%2F&amp;counturl=http%3A%2F%2Fblog.cssguru.de%2F10-jquery-bildgalerien-plugins%2F&amp;count=none&amp;text=10%20jQuery%20Bildergalerie%20Plugins" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2F10-jquery-bildgalerien-plugins%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fblog.cssguru.de%2F10-jquery-bildgalerien-plugins%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.cssguru.de%2F10-jquery-bildgalerien-plugins%2F&amp;title=10%20jQuery%20Bildergalerie%20Plugins" id="wpa2a_20"><img src="http://blog.cssguru.de/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.cssguru.de/10-jquery-bildgalerien-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

