<?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>asabie &#124; PHP-JavaScript-MySQL-htaccess-CSS Code-Snippets</title>
	<atom:link href="http://asabie.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://asabie.de</link>
	<description>PHP-JavaScript-MySQL-htaccess-CSS Code-Snippets</description>
	<lastBuildDate>Sun, 15 Apr 2012 09:28:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Verschwommener Text mit CSS3</title>
		<link>http://asabie.de/verschwommener-text-mit-css3/</link>
		<comments>http://asabie.de/verschwommener-text-mit-css3/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 14:35:22 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[CSS-Snippets]]></category>
		<category><![CDATA[Effekt]]></category>
		<category><![CDATA[Texte]]></category>
		<category><![CDATA[verschwommen]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=313</guid>
		<description><![CDATA[Mit CSS3 können Sie Texte verschwommen darstellen. Nutzen Sie den netten Effekt um Texte hervor zu heben und somit die Aufmerksamkeit darauf zu lenken. [crayon-4fb824f130a3c/] ein verschwommener Text]]></description>
			<content:encoded><![CDATA[<p>Mit CSS3 können Sie Texte verschwommen darstellen. Nutzen Sie den netten Effekt um Texte hervor zu heben und somit die Aufmerksamkeit darauf zu lenken.<span id="more-313"></span></p>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
.verschwommen {
   color: transparent;
   text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
&lt;/style&gt;</pre><p></p>
<div>
<style type="text/css">
.verschwommen {
   color: transparent;
   text-shadow: 0 0 5px rgba(0,0,0,0.5);
   font-size: 45px;
}
</style>
<p class="verschwommen">
ein verschwommener Text
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/verschwommener-text-mit-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netter CSS3 Farbband Effekt</title>
		<link>http://asabie.de/netter-css3-farbband-effekt/</link>
		<comments>http://asabie.de/netter-css3-farbband-effekt/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 18:11:00 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[CSS-Snippets]]></category>
		<category><![CDATA[Darstellung]]></category>
		<category><![CDATA[drehen]]></category>
		<category><![CDATA[Effekt]]></category>
		<category><![CDATA[Farbband]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=308</guid>
		<description><![CDATA[Ein netter Effekt, wenn man etwas neues ankündigen möchte. Das Farbband ist ein schöner hingucker und das alles ohne eine Grafikprogramm zu benutzen. Ein schnell einzubindender CSS-Code wertet die Seite gleich auf. [crayon-4fb824f132591/] hier der HTML-Code: [crayon-4fb824f132978/] Demo: NEWS Quelle: &#8230; <a href="http://asabie.de/netter-css3-farbband-effekt/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ein netter Effekt, wenn man etwas neues ankündigen möchte. Das Farbband ist ein schöner hingucker und das alles ohne eine Grafikprogramm zu benutzen. Ein schnell einzubindender CSS-Code wertet die Seite gleich auf.<span id="more-308"></span></p>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
.wrapper {
  margin: 50px auto;
  width: 280px;
  height: 370px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
  -moz-box-shadow:    0px 0px 8px rgba(0,0,0,0.3);
  box-shadow:         0px 0px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 90;
}

.ribbon-wrapper-green {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  right: -3px;
}

.ribbon-green {
  font: bold 15px Sans-Serif;
  color: #333;
  text-align: center;
  text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
  -webkit-transform: rotate(45deg);
  -moz-transform:    rotate(45deg);
  -ms-transform:     rotate(45deg);
  -o-transform:      rotate(45deg);
  position: relative;
  padding: 7px 0;
  left: -5px;
  top: 15px;
  width: 120px;
  background-color: #BFDC7A;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#BFDC7A), to(#8EBF45));
  background-image: -webkit-linear-gradient(top, #BFDC7A, #8EBF45);
  background-image:    -moz-linear-gradient(top, #BFDC7A, #8EBF45);
  background-image:     -ms-linear-gradient(top, #BFDC7A, #8EBF45);
  background-image:      -o-linear-gradient(top, #BFDC7A, #8EBF45);
  color: #6a6340;
  -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
  -moz-box-shadow:    0px 0px 3px rgba(0,0,0,0.3);
  box-shadow:         0px 0px 3px rgba(0,0,0,0.3);
}

.ribbon-green:before, .ribbon-green:after {
  content: &quot;&quot;;
  border-top:   3px solid #6e8900;   
  border-left:  3px solid transparent;
  border-right: 3px solid transparent;
  position:absolute;
  bottom: -3px;
}

.ribbon-green:before {
  left: 0;
}
.ribbon-green:after {
  right: 0;
}
&lt;/style&gt;</pre><p></p>
<p>hier der HTML-Code:</p><pre class="crayon-plain-tag">&lt;div class=&quot;wrapper&quot;&gt;
       &lt;div class=&quot;ribbon-wrapper-green&quot;&gt;&lt;div class=&quot;ribbon-green&quot;&gt;NEWS&lt;/div&gt;&lt;/div&gt;
&lt;/div&gt;</pre><p></p>
<p>Demo:</p>
<style type="text/css">
.wrapper { margin: 50px auto; width: 280px; height: 370px;  background: white;  border-radius: 10px;  -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);  -moz-box-shadow:    0px 0px 8px rgba(0,0,0,0.3);  box-shadow:         0px 0px 8px rgba(0,0,0,0.3);  position: relative;  z-index: 90;}.ribbon-wrapper-green {  width: 85px;  height: 88px;  overflow: hidden;  position: absolute;  top: -3px;  right: -3px;}.ribbon-green {  font: bold 15px Sans-Serif;  color: #333;  text-align: center;  text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;  -webkit-transform: rotate(45deg);  -moz-transform:    rotate(45deg);  -ms-transform:     rotate(45deg);  -o-transform:      rotate(45deg);  position: relative;  padding: 7px 0;  left: -5px;  top: 15px;  width: 120px;  background-color: #BFDC7A;  background-image: -webkit-gradient(linear, left top, left bottom, from(#BFDC7A), to(#8EBF45));  background-image: -webkit-linear-gradient(top, #BFDC7A, #8EBF45);  background-image:    -moz-linear-gradient(top, #BFDC7A, #8EBF45);  background-image:-ms-linear-gradient(top, #BFDC7A, #8EBF45);  background-image:      -o-linear-gradient(top, #BFDC7A, #8EBF45);  color: #6a6340;  -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);  -moz-box-shadow:0px 0px 3px rgba(0,0,0,0.3);  box-shadow: 0px 0px 3px rgba(0,0,0,0.3);}.ribbon-green:before, .ribbon-green:after {
  content: "";  border-top:   3px solid #6e8900;  border-left:  3px solid transparent;  border-right: 3px solid transparent;
  position:absolute;  bottom: -3px;}.ribbon-green:before {  left: 0;}.ribbon-green:after {  right: 0;}
</style>
<div class="wrapper">
<div class="ribbon-wrapper-green">
<div class="ribbon-green">NEWS</div>
</div>
</div>
<p>Quelle: <a href="http://jsfiddle.net/chriscoyier/H6rQ6/1/" title="jsfiddle.net" target="_blank">http://jsfiddle.net</a><script type="text/javascript"><!--
google_ad_client = "ca-pub-1497179048667377";
/* asabie2 */
google_ad_slot = "8489056543";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/netter-css3-farbband-effekt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aufbau einer HTML5 Seite</title>
		<link>http://asabie.de/aufbau-einer-html5-seite/</link>
		<comments>http://asabie.de/aufbau-einer-html5-seite/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 12:36:44 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[HTML-Snippets]]></category>
		<category><![CDATA[Aufbau]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[unterschied]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=302</guid>
		<description><![CDATA[Für alle die es noch nicht im Internet irgendwo gefunden haben. Deswegen habe ich auch nochmal aufgeführt wie aktuell der Aufbau einer HTML5 Seite ist. Der Quelltext darf gerne als Vorlage dienen um die Arbeit zu erleichtern. Als schaut es &#8230; <a href="http://asabie.de/aufbau-einer-html5-seite/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Für alle die es noch nicht im Internet irgendwo gefunden haben. Deswegen habe ich auch nochmal aufgeführt wie aktuell der Aufbau einer HTML5 Seite ist. Der Quelltext darf gerne als Vorlage dienen um die Arbeit zu erleichtern.<span id="more-302"></span> Als schaut es euch einfach mal an!</p>
<p></p><pre class="crayon-plain-tag">&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;de&quot;&gt;
  &lt;head&gt;
    &lt;title&gt;Aufbau einer HTML5 Seite&lt;/title&gt;
    &lt;meta charset=&quot;UTF-8&quot; /&gt;
  &lt;/head&gt;
  &lt;body&gt;
      &lt;header&gt;
        &lt;h1 class=&quot;beitrag-title&quot;&gt;Es wird dich gl&amp;uuml;cklich machen?&lt;/h1&gt;
        &lt;time class=&quot;date-update&quot; datetime=&quot;2011-12-07 11:11:03-0400&quot; pubdate&gt;
          08-07-2010
        &lt;/time&gt;
        &lt;p class=&quot;author vcard&quot;&gt;
            von &lt;span class=&quot;aut&quot;&gt;Asabie&lt;/span&gt;
        &lt;/p&gt;
      &lt;/header&gt;
 
      &lt;div class=&quot;beitrag-content&quot;&gt;
          &lt;p&gt;...artikel text...&lt;/p&gt;
          &lt;p&gt;...artikel text...&lt;/p&gt;
       
          &lt;figure&gt;
            &lt;img src=&quot;company.jpg&quot; alt=&quot;Bild von der Firma&quot; /&gt;
            &lt;figcaption&gt;Bild von der Firma unten, 400sq-ft apt.&lt;/figcaption&gt;
          &lt;/figure&gt;
 
          &lt;p&gt;...artikel text...&lt;/p&gt;
          &lt;p&gt;...artikel text...&lt;/p&gt;
 
          &lt;aside&gt;
            &lt;h2&gt;Bewerte den Artikel&lt;/h2&gt;
            &lt;ul&gt;
              &lt;li&gt;Facebook&lt;/li&gt;
              &lt;li&gt;Twitter&lt;/li&gt;
              &lt;li&gt;Google+&lt;/li&gt;
            &lt;/ul&gt;
          &lt;/aside&gt;
       
          &lt;div class=&quot;b-content&quot;&gt;
            &lt;a href=&quot;foto-all.png&quot;&gt;
              &lt;img src=&quot;foto.png&quot; alt=&quot;musterbild&quot; /&gt;
            &lt;/a&gt;
          &lt;/div&gt;
 
          &lt;p&gt;...artikel text...&lt;/p&gt;
          &lt;p&gt;...artikel text...&lt;/p&gt;
       
          &lt;a class=&quot;beitrag&quot; href=&quot;http://unbekannt.de/&quot;&gt;weiter&lt;/a&gt;
      &lt;/div&gt;
 
      &lt;footer&gt;
        &lt;p&gt;
          hier ein kleiner footer Text
        &lt;/p&gt;
        &lt;div class=&quot;source-org vcard copyright&quot;&gt;
            Copyright 2010 &lt;span class=&quot;cop&quot;&gt;asabie.de&lt;/span&gt;
        &lt;/div&gt;
      &lt;/footer&gt;
  &lt;/body&gt;
&lt;/html&gt;</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/aufbau-einer-html5-seite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vergleich der Browser, wer kann was?</title>
		<link>http://asabie.de/vergleich-der-browser/</link>
		<comments>http://asabie.de/vergleich-der-browser/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 12:12:05 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[News / Infos]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Funktion]]></category>
		<category><![CDATA[Test]]></category>
		<category><![CDATA[unterstützung]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=299</guid>
		<description><![CDATA[Wer wissen möchte ob sein Browser den aktuellen Anforderungen stand hält, der kann dies über die Seite &#8220;www.findmebyip.com&#8221; nachsehen. Hier findet Ihr einen kompletten Überblick über die Aktuellen Browser und was sie können! Quelle: http://www.findmebyip.com]]></description>
			<content:encoded><![CDATA[<p>Wer wissen möchte ob sein Browser den aktuellen Anforderungen stand hält, der kann dies über die Seite &#8220;www.findmebyip.com&#8221; nachsehen. <span id="more-299"></span>Hier findet Ihr einen kompletten Überblick über die Aktuellen Browser und was sie können!<br />
<a href="http://www.findmebyip.com/litmus/"><img src="http://asabie.de/wp-content/uploads/css_html_browser-150x150.png" alt="Vergleich der Browser" title="css_html_browser-150x150" width="150" height="150" class="alignright size-full wp-image-221" /></a><br />
Quelle: <a href="http://www.findmebyip.com/litmus/" title="Browser Test" target="_blank">http://www.findmebyip.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/vergleich-der-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 dreht durch</title>
		<link>http://asabie.de/css3-dreht-durch/</link>
		<comments>http://asabie.de/css3-dreht-durch/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 21:04:56 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[CSS-Snippets]]></category>
		<category><![CDATA[Bilder]]></category>
		<category><![CDATA[drehen]]></category>
		<category><![CDATA[rotate]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=278</guid>
		<description><![CDATA[Mit CSS3 lassen sich nun fantastische Illusionen zaubern. Das wird in Zukunft viel Arbeit ersparen, denn man braucht nicht extra ein Bild zu erstellen wenn man einen schrägen Text anzeigen lassen möchte. Mit der Funktionen rotate von CSS3 lassen sich &#8230; <a href="http://asabie.de/css3-dreht-durch/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mit CSS3 lassen sich nun fantastische Illusionen zaubern. Das wird in Zukunft viel Arbeit ersparen, denn man braucht nicht extra ein Bild zu erstellen wenn man einen schrägen Text anzeigen lassen möchte.<span id="more-278"></span> Mit der Funktionen rotate von CSS3 lassen sich Objekte ruck zuck drehen. Schauen sie selbst!</p>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
.drehen {
/*f&uuml;r  Safari */
-webkit-transform: rotate(-30deg);
/*f&uuml;r Firefox */
-moz-transform: rotate(-30deg);
/*f&uuml;r IE */
-ms-transform: rotate(-30deg);
/*f&uuml;r Opera */
-o-transform: rotate(-30deg);
/*f&uuml;r Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
&lt;/style&gt;</pre><p></p>
<style type="text/css">
.drehen {-webkit-transform: rotate(-30deg);-moz-transform: rotate(-30deg);-ms-transform: rotate(-30deg);-o-transform: rotate(-30deg);filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);clear:left; width:50%; padding:202px;}
.rttext{font-size:2em}
</style>
<div class="drehen">
<h1 class="rttext">ich drehe durch</h1>
</div>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/css3-dreht-durch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcher Browser unterstützt CSS3 und HTML5</title>
		<link>http://asabie.de/welcher-browser-unterstuetzt-css3-html5/</link>
		<comments>http://asabie.de/welcher-browser-unterstuetzt-css3-html5/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 10:57:18 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[News / Infos]]></category>
		<category><![CDATA[anders]]></category>
		<category><![CDATA[Ausgabe]]></category>
		<category><![CDATA[Darstellung]]></category>
		<category><![CDATA[Loading]]></category>
		<category><![CDATA[prüfen]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[unterschied]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=269</guid>
		<description><![CDATA[Welchen Browser muss ich nehmen um die Funktionen von CSS3 und HTML5 zu genießen? Die Frage lässt sich schnell beantworten. Auch wenn man mit seiner alten Version von Browser zufrieden ist weil er so stabil läuft, empfiehlt sich dennoch ein &#8230; <a href="http://asabie.de/welcher-browser-unterstuetzt-css3-html5/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Welchen Browser muss ich nehmen um die Funktionen von CSS3 und HTML5 zu genießen? Die Frage lässt sich schnell beantworten. Auch wenn man mit seiner alten Version von Browser zufrieden ist weil er so stabil läuft, empfiehlt sich dennoch ein Umstieg auf eine aktuellere Version seines Browsers. <span id="more-269"></span>Es bietet einen mehrere Vorteile zumal sind sie meistens schneller im Seitenaufbau, zum anderen sind meistens alte Bugs beseitigt und der größte Vorteil ist es das man die neuen Funktionen von CSS3 und HTML5 genießen kann.</p>
<p>Also einfach mal darüber nachdenken aufzurüsten! Dabei muss jeder selber entscheiden welchen Browser er nimmt ob nun <a href="http://www.mozilla.org/de/firefox/new/" title="Firefox" target="_blank">Firefox</a>, <a href="http://www.google.de/chrome/" title="chrome" target="_blank">Chrome</a>, <a href="http://de.opera.com/" title="Opera" target="_blank">Opera</a>, <a href="http://www.apple.com/de/safari/" title="Safari" target="_blank">Safari</a>, <a href="http://www.avantbrowser.com/" title="Avant Browser" target="_blank">Avant</a>, <a href="http://windows.microsoft.com/de-DE/internet-explorer/products/ie/home" title="IE Explorer" target="_blank">IE Explorer</a>&#8230;usw.<script type="text/javascript"><!--
google_ad_client = "ca-pub-1497179048667377";
/* asabie2 */
google_ad_slot = "8489056543";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/welcher-browser-unterstuetzt-css3-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 was ist neu und was alt</title>
		<link>http://asabie.de/html5-was-ist-neu-und-was-alt/</link>
		<comments>http://asabie.de/html5-was-ist-neu-und-was-alt/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 19:37:19 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[HTML-Snippets]]></category>
		<category><![CDATA[prüfen]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[unterschied]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=252</guid>
		<description><![CDATA[Jeder kennt den Begriff HTML5. Doch welche &#8220;tags&#8221;sind neu und welche werden gar nicht mehr benutzt. Die Tabelle dich ich gefunden habe Listet einige neue und auch nicht mehr benutzte auf. Tag Beschreibung &#60;!&#8211;&#8230;&#8211;&#62; Definiert einen Kommentar &#60;!DOCTYPE&#62; Definiert den &#8230; <a href="http://asabie.de/html5-was-ist-neu-und-was-alt/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Jeder kennt den Begriff HTML5. Doch welche &#8220;tags&#8221;sind neu und welche werden gar nicht mehr benutzt. Die Tabelle dich ich gefunden habe Listet einige neue und auch nicht mehr benutzte auf. <span id="more-252"></span></p>
<style type="text/css">
.notsupported {
	color: #900;
	text-decoration: line-through;
}
.deprecated{
	font-weight: bolder;
	color: #900;
	text-decoration: none;
}
.new {
	font-style: italic;
	font-weight: bolder;
	color: #0C0;
	text-decoration: none;
}
</style>
<table>
<tbody xmlns="http://www.w3.org/1999/xhtml">
<tr>
<th align="left" width="150">Tag</th>
<th align="left">Beschreibung</th>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_comment.asp">&lt;!&#8211;&#8230;&#8211;&gt;</a></td>
<td>Definiert einen Kommentar</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_doctype.asp">&lt;!DOCTYPE&gt;</a> </td>
<td>Definiert den Dokumenttyp</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_a.asp">&lt;a&gt;</a></td>
<td>Definiert ein Link</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_abbr.asp">&lt;abbr&gt;</a></td>
<td>Definiert eine Abkürzung</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_acronym.asp">&lt;acronym&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_address.asp">&lt;address&gt;</a></td>
<td>Definiert Kontaktinformationen des Autors/Eigentümer vom Dokument/Artikel</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_applet.asp">&lt;applet&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_area.asp">&lt;area&gt;</a></td>
<td>Definiert ein Bereich von image-map</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_article.asp">&lt;article&gt;</a><span class="new">New</span></td>
<td>Definiert einen Artikel</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_aside.asp">&lt;aside&gt;</a><span class="new">New</span></td>
<td>Definiert Inhalte neben den Inhalt dieser Seite</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_audio.asp">&lt;audio&gt;</a><span class="new">New</span></td>
<td>Definiert Soundinhalte</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_b.asp">&lt;b&gt;</a></td>
<td>Definiert Fett formatierten Text</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_base.asp">&lt;base&gt;</a></td>
<td>Gibt den Basis-URL / Ziele für alle relativen URLs in einem Dokument</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_basefont.asp">&lt;basefont&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_bdi.asp">&lt;bdi&gt;</a><span class="new">New</span></td>
<td>Isoliert Einen Teil des Textes, die anders formatiert werden kann</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_bdo.asp">&lt;bdo&gt;</a></td>
<td>Überschreibt die aktuelle Text-Richtung</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_big.asp" class="notsupported">&lt;big&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_blockquote.asp">&lt;blockquote&gt;</a></td>
<td>Definiert das einrücken des Textes</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_body.asp">&lt;body&gt;</a></td>
<td>Definiert den body des Dokumentes</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_br.asp">&lt;br&gt;</a></td>
<td>Definiert einen einzelnen Umbruch</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_button.asp">&lt;button&gt;</a></td>
<td>Definiert eine Anklickbaren Button</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_canvas.asp">&lt;canvas&gt;</a><span class="new">New</span></td>
<td>Um Grafiken zu Zeichnen, on the fly, via scripting (JavaScript)</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_caption.asp">&lt;caption&gt;</a></td>
<td>Definiert eine Tabellenbeschriftung</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_center.asp">&lt;center&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_cite.asp">&lt;cite&gt;</a></td>
<td>Definiert den Titel eines Werkes</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_phrase_elements.asp">&lt;code&gt;</a></td>
<td>Definiert ein Stück von Computer-code</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_col.asp">&lt;col&gt;</a></td>
<td>Gibt Eigenschaften der Spalte  &lt;colgroup&gt; Element wieder</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_colgroup.asp">&lt;colgroup&gt;</a></td>
<td>Gibt eine Gruppe von einer oder mehreren Spalten in einer Tabelle für die Formatierung</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_command.asp">&lt;command&gt;</a><span class="new">New</span></td>
<td>Defines a command button that a user can invoke</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_datalist.asp">&lt;datalist&gt;</a><span class="new">New</span></td>
<td>Gibt eine Liste von vordefinierten Optionen für Benutzereingabe-Steuerelemente</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_dd.asp">&lt;dd&gt;</a></td>
<td>Definiert eine Beschreibung eines Elements in einer Definitionsliste</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_del.asp">&lt;del&gt;</a></td>
<td>Definiert einen Text, der aus einem Dokument gelöscht wurde</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_details.asp">&lt;details&gt;</a><span class="new">New</span></td>
<td>Definiert zusätzliche Details, die der Benutzer anzeigen oder ausblenden können</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_phrase_elements.asp">&lt;dfn&gt;</a></td>
<td>Definiert eine Defination von einen Begriff</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_dir.asp">&lt;dir&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_div.asp">&lt;div&gt;</a></td>
<td>Definiert einen Bereich in einem Dokument</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_dl.asp">&lt;dl&gt;</a></td>
<td>Definiert eine Definitionsliste</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_dt.asp">&lt;dt&gt;</a></td>
<td>Definiert eine Amtszeit  in eine Definitionsliste</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_phrase_elements.asp">&lt;em&gt;</a></td>
<td>Definiert hervorgehobenen text</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_embed.asp">&lt;embed&gt;</a><span class="new">New</span></td>
<td>Definiert einen Container für eine externe Anwendung oder interaktive Inhalte (plug-in)</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_fieldset.asp">&lt;fieldset&gt;</a></td>
<td>Groups related elements in a form</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_figcaption.asp">&lt;figcaption&gt;</a><span class="new">New</span></td>
<td>Definiert eine Beschriftung für ein &lt;figure&gt; Element</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_figure.asp">&lt;figure&gt;</a><span class="new">New</span></td>
<td>Gibt eigenständige Inhalt</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_font.asp">&lt;font&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_footer.asp">&lt;footer&gt;</a><span class="new">New</span></td>
<td>Definiert eine Fußzeile für ein Dokument oder Abschnitt</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_form.asp">&lt;form&gt;</a></td>
<td>Definiert eine HTML-Formular für die Benutzereingabe</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_frame.asp">&lt;frame&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_frameset.asp">&lt;frameset&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_hn.asp">&lt;h1&gt; to &lt;h6&gt;</a></td>
<td> Definiert HTML headings(Überschriften)</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_head.asp">&lt;head&gt;</a></td>
<td>Definiert Informationen über das Dokument</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_header.asp">&lt;header&gt;</a><span class="new">New</span></td>
<td>Gibt eine Einführung oder eine Gruppe von Navigationselementen für ein Dokument</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_hgroup.asp">&lt;hgroup&gt;</a><span class="new">New</span></td>
<td>Gruppiert eine Reihe von &lt;h1&gt; to &lt;h6&gt; Elementen wenn eine Überschrift mehrere Ebenen hat</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_hr.asp">&lt;hr&gt;</a></td>
<td> Definiert eine thematische Änderung im Inhal</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_html.asp">&lt;html&gt;</a></td>
<td>Definiert den Stamm eines HTML-Dokuments</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_i.asp">&lt;i&gt;</a></td>
<td>Definiert einen Teil des Textes in eine andere Stimme oder Stimmung</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_iframe.asp">&lt;iframe&gt;</a></td>
<td>Definiert einen Inline-frame</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_img.asp">&lt;img&gt;</a></td>
<td>Definiert ein Bild</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_input.asp">&lt;input&gt;</a></td>
<td>Definiert ein Eingabesteuerelement</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_ins.asp">&lt;ins&gt;</a></td>
<td>Definiert einen Text, der in ein Dokument eingefügt wurde</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_keygen.asp">&lt;keygen&gt;</a><span class="new">New</span></td>
<td>Definiert ein Schlüssel-Paar Generator-Feld(for forms)</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_phrase_elements.asp">&lt;kbd&gt;</a></td>
<td>Tastatur-Eingaben definiert</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_label.asp">&lt;label&gt;</a></td>
<td>Definiert eine Kennung für ein input-element</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_legend.asp">&lt;legend&gt;</a></td>
<td>Definiert eine Beschriftung für ein &lt;fieldset&gt;,<br />
&lt;figure&gt;, oder &lt;details&gt; Element</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_li.asp">&lt;li&gt;</a></td>
<td>Definiert ein Listenelement</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_link.asp">&lt;link&gt;</a></td>
<td>Definiert die Beziehung zwischen einem Dokument und einer externen Ressource </td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_map.asp">&lt;map&gt;</a></td>
<td>Definiert eine Client-seitige image-map </td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_mark.asp">&lt;mark&gt;</a><span class="new">New</span></td>
<td>Definiert markierten /hervorgehoben Text</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_menu.asp">&lt;menu&gt;</a></td>
<td>Definiert eine Liste/Menü-Befehle</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_meta.asp">&lt;meta&gt;</a></td>
<td>Definiert Metadaten über ein HTML-Dokument</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_meter.asp">&lt;meter&gt;</a><span class="new">New</span></td>
<td>Definiert eine skalare Messung in einem bekannten Bereich (ein Messgerät)</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_nav.asp">&lt;nav&gt;</a><span class="new">New</span></td>
<td>Definiert Navigations-links</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_noframes.asp">&lt;noframes&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_noscript.asp">&lt;noscript&gt;</a></td>
<td>Definiert einen alternativen Inhalt für Benutzer, die keine clientseitigen Skripts unterstützen</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_object.asp">&lt;object&gt;</a></td>
<td>Definiert ein eingebettetes Objekt</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_ol.asp">&lt;ol&gt;</a></td>
<td>Definiert eine geordnete Liste</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_optgroup.asp">&lt;optgroup&gt;</a></td>
<td>Definiert eine Gruppe von Optionen in einer Dropdown-Liste</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_option.asp">&lt;option&gt;</a></td>
<td>Definiert eine Option in einem Dropdown-Listenfeld</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_output.asp">&lt;output&gt;</a><span class="new">New</span></td>
<td>Definiert das Ergebnis einer Berechnung</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_p.asp">&lt;p&gt;</a></td>
<td>Definiert einen Absatz</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_param.asp">&lt;param&gt;</a></td>
<td>Definiert einen Parameter für ein Objekt</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_pre.asp">&lt;pre&gt;</a></td>
<td>Definiert vorformatierten text</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_progress.asp">&lt;progress&gt;</a><span class="new">New</span></td>
<td>Der Fortschritt eines Vorgangs</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_q.asp">&lt;q&gt;</a></td>
<td>Definiert ein kurzes Zitat</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_rp.asp">&lt;rp&gt;</a><span class="new">New</span></td>
<td>Definiert, was zum Anzeigen in Browsern, die keine Ruby unterstützen</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_rt.asp">&lt;rt&gt;</a><span class="new">New</span></td>
<td>Definiert beine Aussprache von Zeichen (for East Asian<br />
typography)</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_ruby.asp">&lt;ruby&gt;</a><span class="new">New</span></td>
<td>Definiert eine Anmerkung für ruby (for East Asian typography)</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_s.asp">&lt;s&gt;</a></td>
<td>Definiert Text, der nicht mehr korrekt ist</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_phrase_elements.asp">&lt;samp&gt;</a></td>
<td>Defines sample output from a computer program</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_script.asp">&lt;script&gt;</a></td>
<td>Definiert ein Client-seitiges script</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_section.asp">&lt;section&gt;</a><span class="new">New</span></td>
<td>Definiert einen Bereich in einem Dokument</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_select.asp">&lt;select&gt;</a></td>
<td>Definiert eine Dropdown-Liste</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_small.asp">&lt;small&gt;</a></td>
<td>Definiert kleineren text</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_source.asp">&lt;source&gt;</a><span class="new">New</span></td>
<td>Definiert mehrere Medienressourcen für Medienelemente (&lt;video&gt; and &lt;audio&gt;)</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_span.asp">&lt;span&gt;</a></td>
<td>Definiert einen Bereich in einem Dokument</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_strike.asp">&lt;strike&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_phrase_elements.asp">&lt;strong&gt;</a></td>
<td>Wichtigen Text definiert</td>
</tr>
<tr>
<td><a href="tag_style.asp">&lt;style&gt;</a></td>
<td>Informationen zum Schriftschnitt für ein Dokument definiert</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_sup.asp">&lt;sub&gt;</a></td>
<td>Definiert tiefgestellten text</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_summary.asp">&lt;summary&gt;</a><span class="new">New</span></td>
<td>Definiert eine sichtbare Überschrift für eine &lt;details&gt; Element</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_sup.asp">&lt;sup&gt;</a></td>
<td>Definiert einen Hochgestellten Text</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_table.asp">&lt;table&gt;</a></td>
<td>Definiert eine Tabelle</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_tbody.asp">&lt;tbody&gt;</a></td>
<td>Gruppiert den  Körper vom Tabelleninhalt</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_td.asp">&lt;td&gt;</a></td>
<td>Definiert eine Zelle in einer Tabelle</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_textarea.asp">&lt;textarea&gt;</a></td>
<td>Definiert ein mehrzeiliges Eingabesteuerelement (text area)</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_tfoot.asp">&lt;tfoot&gt;</a></td>
<td>Gruppen des Fußzeileninhalts in einer Tabelle</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_th.asp">&lt;th&gt;</a></td>
<td>Definiert eine Headerzelle in einer Tabelle</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_thead.asp">&lt;thead&gt;</a></td>
<td>Gruppiert den Header-Inhalt in einer Tabelle</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_time.asp">&lt;time&gt;</a><span class="new">New</span></td>
<td>Definiert ein Datum/Uhrzeit</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_title.asp">&lt;title&gt;</a></td>
<td>Definiert einen Titel für das Dokument</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_tr.asp">&lt;tr&gt;</a></td>
<td>Definiert eine Zeile in einer Tabelle</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_track.asp">&lt;track&gt;</a><span class="new">New</span></td>
<td>Definiert Textspuren für Media-Element (&lt;video&gt; and &lt;audio&gt;)</td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_tt.asp">&lt;tt&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a class="notsupported" href="http://www.w3schools.com/html5/tag_u.asp">&lt;u&gt;</a></td>
<td><span class="deprecated">Nicht unterstützt in HTML5</span></td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_ul.asp">&lt;ul&gt;</a></td>
<td>Definiert eine ungeordnete Liste</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_phrase_elements.asp">&lt;var&gt;</a></td>
<td>Definiert eine variable</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_video.asp">&lt;video&gt;</a><span class="new">New</span></td>
<td>Definiert ein Video oder einen Film</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/html5/tag_wbr.asp">&lt;wbr&gt;</a><span class="new">New</span></td>
<td>Definiert einen möglichen Zeilenumbruch</td>
</tr>
</tbody>
</table>
<p>Quelle: <a href="http://www.w3schools.com/html5/html5_reference.asp" title="www.w3schools.com" target="_blank">www.w3schools.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/html5-was-ist-neu-und-was-alt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Meyer Reset</title>
		<link>http://asabie.de/css-meyer-reset/</link>
		<comments>http://asabie.de/css-meyer-reset/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 16:45:33 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[CSS-Snippets]]></category>
		<category><![CDATA[anders]]></category>
		<category><![CDATA[Ausgabe]]></category>
		<category><![CDATA[Darstellung]]></category>
		<category><![CDATA[fixed]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=243</guid>
		<description><![CDATA[Mit den Meyer Reset, könnt Ihr alle vordefinierten Positionen zurücksetzen um eure Seite komplett neu zu gestallten. Die meisten von euch wissen wie sie es einsetzen müssen. [crayon-4fb824f139ea9/]]]></description>
			<content:encoded><![CDATA[<p>Mit den Meyer Reset, könnt Ihr alle vordefinierten Positionen zurücksetzen um eure Seite komplett neu zu gestallten. Die meisten von euch wissen wie sie es einsetzen müssen.<span id="more-243"></span></p>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        font-weight: inherit;
        font-style: inherit;
        font-size: 100%;
        font-family: inherit;
        vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
        outline: 0;
}
body {
        line-height: 1;
        color: black;
        background: white;
}
ol, ul {
        list-style: none;
}
/* tables still need 'cellspacing=&quot;0&quot;' in the markup */
table {
        border-collapse: separate;
        border-spacing: 0;
}
caption, th, td {
        text-align: left;
        font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
        content: &quot;&quot;;
}
blockquote, q {
        quotes: &quot;&quot; &quot;&quot;;
}
&lt;/style&gt;</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/css-meyer-reset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diese Formen kann CSS3</title>
		<link>http://asabie.de/diese-formen-kann-css3/</link>
		<comments>http://asabie.de/diese-formen-kann-css3/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 19:27:02 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[CSS-Snippets]]></category>
		<category><![CDATA[anders]]></category>
		<category><![CDATA[Ausgabe]]></category>
		<category><![CDATA[Darstellung]]></category>
		<category><![CDATA[Figuren]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=153</guid>
		<description><![CDATA[Diese Formen könnt Ihr mit CSS3 erreichen, Voraussetzung das euer Browser es auch unterstützt. Also einfach mal reinziehen was alles so möglich ist. Quadrat: [crayon-4fb824f13aa64/] Rechteck: [crayon-4fb824f13ae80/] Kreis: [crayon-4fb824f13b26f/] Oval: [crayon-4fb824f13b656/] Dreieck nach oben: [crayon-4fb824f13ba41/] Dreieck nach unten: [crayon-4fb824f13be35/] Dreieck &#8230; <a href="http://asabie.de/diese-formen-kann-css3/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Diese Formen könnt Ihr mit CSS3 erreichen, Voraussetzung das euer Browser es auch unterstützt. Also einfach mal reinziehen was alles so möglich ist.<span id="more-153"></span></p>
<p>Quadrat:</p>
<style type="text/css">
#square {
	width: 100px;
	height: 100px;
	background: red;
}
</style>
<div id="square"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#square {
	width: 100px;
	height: 100px;
	background: red;
}
&lt;/style&gt;</pre><p>	</p>
<p>Rechteck:</p>
<style type="text/css">
#rectangle {
	width: 200px;
	height: 100px;
	background: red;
}
</style>
<div id="rectangle"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#rectangle {
	width: 200px;
	height: 100px;
	background: red;
}
&lt;/style&gt;</pre><p></p>
<p>Kreis:</p>
<style type="text/css">
#circle {
	width: 100px;
	height: 100px;
	background: red;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}
</style>
<div id="circle"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#circle {
	width: 100px;
	height: 100px;
	background: red;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}
&lt;/style&gt;</pre><p></p>
<p>Oval:</p>
<style type="text/css">
#oval {
	width: 200px;
	height: 100px;
	background: red;
	-moz-border-radius: 100px / 50px;
	-webkit-border-radius: 100px / 50px;
	border-radius: 100px / 50px;
}
</style>
<div id="oval"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#oval {
	width: 200px;
	height: 100px;
	background: red;
	-moz-border-radius: 100px / 50px;
	-webkit-border-radius: 100px / 50px;
	border-radius: 100px / 50px;
}
&lt;/style&gt;</pre><p></p>
<p>Dreieck nach oben:</p>
<style type="text/css">
#triangle-up {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 100px solid red;
}
</style>
<div id="triangle-up"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#triangle-up {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 100px solid red;
}
&lt;/style&gt;</pre><p></p>
<p>Dreieck nach unten:</p>
<style type="text/css">
#triangle-down {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 100px solid red;
}
</style>
<div id="triangle-down"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#triangle-down {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 100px solid red;
}
&lt;/style&gt;</pre><p></p>
<p>Dreieck nach links:</p>
<style type="text/css">
#triangle-left {
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-right: 100px solid red;
	border-bottom: 50px solid transparent;
}
</style>
<div id="triangle-left"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#triangle-left {
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-right: 100px solid red;
	border-bottom: 50px solid transparent;
}
&lt;/style&gt;</pre><p></p>
<p>Dreieck nach rechts:</p>
<style type="text/css">
#triangle-right {
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-left: 100px solid red;
	border-bottom: 50px solid transparent;
}	
</style>
<div id="triangle-right"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#triangle-right {
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-left: 100px solid red;
	border-bottom: 50px solid transparent;
}	
&lt;/style&gt;</pre><p></p>
<p>Dreieck oben links:</p>
<style type="text/css">
#triangle-topleft {
	width: 0;
	height: 0;
	border-top: 100px solid red; 
	border-right: 100px solid transparent;			
}
</style>
<div id="triangle-topleft"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#triangle-topleft {
	width: 0;
	height: 0;
	border-top: 100px solid red; 
	border-right: 100px solid transparent;			
}
&lt;/style&gt;</pre><p></p>
<p>Dreieck oben rechten:</p>
<style type="text/css">
#triangle-topright {
	width: 0;
	height: 0;
	border-top: 100px solid red; 
	border-left: 100px solid transparent;</p>
<p>}
</style>
<div id="triangle-topright"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#triangle-topright {
	width: 0;
	height: 0;
	border-top: 100px solid red; 
	border-left: 100px solid transparent;
	
}
&lt;/style&gt;</pre><p></p>
<p>Dreieck unten links:</p>
<style type="text/css">
#triangle-bottomleft {
	width: 0;
	height: 0;
	border-bottom: 100px solid red; 
	border-right: 100px solid transparent;	
}	
</style>
<div id="triangle-bottomleft"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#triangle-bottomleft {
	width: 0;
	height: 0;
	border-bottom: 100px solid red; 
	border-right: 100px solid transparent;	
}	
&lt;/style&gt;</pre><p></p>
<p>Dreieck unten rechts:</p>
<style type="text/css">
#triangle-bottomright {
	width: 0;
	height: 0;
	border-bottom: 100px solid red; 
	border-left: 100px solid transparent;
}
</style>
<div id="triangle-bottomright"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#triangle-bottomright {
	width: 0;
	height: 0;
	border-bottom: 100px solid red; 
	border-left: 100px solid transparent;
}
&lt;/style&gt;</pre><p></p>
<p>Parallelogramm:</p>
<style type="text/css">
#parallelogram {
	width: 150px;
	height: 100px;
	-webkit-transform: skew(20deg);
	   -moz-transform: skew(20deg);
	     -o-transform: skew(20deg);
	background: red;
}
</style>
<div id="parallelogram"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#parallelogram {
	width: 150px;
	height: 100px;
	-webkit-transform: skew(20deg);
	   -moz-transform: skew(20deg);
	     -o-transform: skew(20deg);
	background: red;
}
&lt;/style&gt;</pre><p></p>
<p>Trapez:</p>
<style type="text/css">
#trapezoid {
	border-bottom: 100px solid red;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	height: 0;
	width: 100px;
}
</style>
<div id="trapezoid"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#trapezoid {
	border-bottom: 100px solid red;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	height: 0;
	width: 100px;
}
&lt;/style&gt;</pre><p></p>
<p>Stern (6-Punkte):</p>
<style type="text/css">
#star-six {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 100px solid red;
	position: relative;
}
#star-six:after {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 100px solid red;
	position: absolute;
	content: "";
	top: 30px;
	left: -50px;
}
</style>
<div id="star-six"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#star-six {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 100px solid red;
	position: relative;
}
#star-six:after {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 100px solid red;
	position: absolute;
	content: &quot;&quot;;
	top: 30px;
	left: -50px;
}
&lt;/style&gt;</pre><p></p>
<p>5-Punkte-Stern:</p>
<style type="text/css">
#star-five {
   margin: 50px 0;
   position: relative;
   display: block;
   color: red;
   width: 0px;
   height: 0px;
   border-right:  100px solid transparent;
   border-bottom: 70px  solid red;
   border-left:   100px solid transparent;
   -moz-transform:    rotate(35deg);
   -webkit-transform: rotate(35deg);
   -ms-transform:     rotate(35deg);
   -o-transform:      rotate(35deg);
}
#star-five:before {
   border-bottom: 80px solid red;
   border-left: 30px solid transparent;
   border-right: 30px solid transparent;
   position: absolute;
   height: 0;
   width: 0;
   top: -45px;
   left: -65px;
   display: block;
   content: '';
   -webkit-transform: rotate(-35deg);
   -moz-transform:    rotate(-35deg);
   -ms-transform:     rotate(-35deg);
   -o-transform:      rotate(-35deg);</p>
<p>}
#star-five:after {
   position: absolute;
   display: block;
   color: red;
   top: 3px;
   left: -105px;
   width: 0px;
   height: 0px;
   border-right: 100px solid transparent;
   border-bottom: 70px solid red;
   border-left: 100px solid transparent;
   -webkit-transform: rotate(-70deg);
   -moz-transform:    rotate(-70deg);
   -ms-transform:     rotate(-70deg);
   -o-transform:      rotate(-70deg);
   content: '';
}
</style>
<div id="star-five"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#star-five {
   margin: 50px 0;
   position: relative;
   display: block;
   color: red;
   width: 0px;
   height: 0px;
   border-right:  100px solid transparent;
   border-bottom: 70px  solid red;
   border-left:   100px solid transparent;
   -moz-transform:    rotate(35deg);
   -webkit-transform: rotate(35deg);
   -ms-transform:     rotate(35deg);
   -o-transform:      rotate(35deg);
}
#star-five:before {
   border-bottom: 80px solid red;
   border-left: 30px solid transparent;
   border-right: 30px solid transparent;
   position: absolute;
   height: 0;
   width: 0;
   top: -45px;
   left: -65px;
   display: block;
   content: '';
   -webkit-transform: rotate(-35deg);
   -moz-transform:    rotate(-35deg);
   -ms-transform:     rotate(-35deg);
   -o-transform:      rotate(-35deg);
   
}
#star-five:after {
   position: absolute;
   display: block;
   color: red;
   top: 3px;
   left: -105px;
   width: 0px;
   height: 0px;
   border-right: 100px solid transparent;
   border-bottom: 70px solid red;
   border-left: 100px solid transparent;
   -webkit-transform: rotate(-70deg);
   -moz-transform:    rotate(-70deg);
   -ms-transform:     rotate(-70deg);
   -o-transform:      rotate(-70deg);
   content: '';
}
&lt;/style&gt;</pre><p></p>
<p>Pentagon:</p>
<style type="text/css">
#pentagon {
    position: relative;
    width: 54px;
    border-width: 50px 18px 0;
    border-style: solid;
    border-color: red transparent;
}
#pentagon:before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    top: -85px;
    left: -18px;
    border-width: 0 45px 35px;
    border-style: solid;
    border-color: transparent transparent red;
}
</style>
<div id="pentagon"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#pentagon {
    position: relative;
    width: 54px;
    border-width: 50px 18px 0;
    border-style: solid;
    border-color: red transparent;
}
#pentagon:before {
    content: &quot;&quot;;
    position: absolute;
    height: 0;
    width: 0;
    top: -85px;
    left: -18px;
    border-width: 0 45px 35px;
    border-style: solid;
    border-color: transparent transparent red;
}
&lt;/style&gt;</pre><p></p>
<p>Hexagon:</p>
<style type="text/css">
#hexagon{
	width: 100px;
	height: 55px;
	background: red;
	position: relative;
}
#hexagon:before{
	content: "";
	position: absolute;
	top: -25px; 
	left: 0;
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 25px solid red;
}
#hexagon:after{
	content: "";
	position: absolute;
	bottom: -25px; 
	left: 0;
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 25px solid red;
}
</style>
<div id="hexagon"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#hexagon {
	width: 100px;
	height: 55px;
	background: red;
	position: relative;
}
#hexagon:before {
	content: &quot;&quot;;
	position: absolute;
	top: -25px; 
	left: 0;
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 25px solid red;
}
#hexagon:after {
	content: &quot;&quot;;
	position: absolute;
	bottom: -25px; 
	left: 0;
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 25px solid red;
}
&lt;/style&gt;</pre><p></p>
<p>Achteck:</p>
<style type="text/css">
#octagon {width: 100px;height: 100px;background: red;position: relative;}
#octagon:before {content: "";position: absolute;top: 0;left: 0;border-bottom: 29px solid red;border-left: 29px solid #eee;border-right: 29px solid #eee;width: 42px;height: 0;}#octagon:after {content: "";position: absolute;bottom: 0;left: 0;border-top: 29px solid red;border-left: 29px solid #eee;border-right: 29px solid #eee;width: 42px;height: 0;}				
</style>
<div id="octagon"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#octagon {
	width: 100px;
	height: 100px;
	background: red;
	position: relative;
}

#octagon:before {
	content: &quot;&quot;;
	position: absolute;
	top: 0;
	left: 0;    
	border-bottom: 29px solid red;
	border-left: 29px solid #eee;
	border-right: 29px solid #eee;
	width: 42px;
	height: 0;
}

#octagon:after {
	content: &quot;&quot;;
	position: absolute;
	bottom: 0;
	left: 0;    
	border-top: 29px solid red;
	border-left: 29px solid #eee;
	border-right: 29px solid #eee;
	width: 42px;
	height: 0;
}				
&lt;/style&gt;</pre><p></p>
<p>Herz:</p>
<style type="text/css">
#heart {
    position: relative;
    width: 100px;
    height: 90px;
}
#heart:before,
#heart:after {
    position: absolute;
    content: "";
    left: 50px;
    top: 0;
    width: 50px;
    height: 80px;
    background: red;
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 0 100%;
       -moz-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
         -o-transform-origin: 0 100%;
            transform-origin: 0 100%;
}
#heart:after {
    left: 0;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 100% 100%;
       -moz-transform-origin: 100% 100%;
        -ms-transform-origin: 100% 100%;
         -o-transform-origin: 100% 100%;
            transform-origin :100% 100%;
}
</style>
<div id="heart"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#heart {
    position: relative;
    width: 100px;
    height: 90px;
}
#heart:before,
#heart:after {
    position: absolute;
    content: &quot;&quot;;
    left: 50px;
    top: 0;
    width: 50px;
    height: 80px;
    background: red;
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 0 100%;
       -moz-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
         -o-transform-origin: 0 100%;
            transform-origin: 0 100%;
}
#heart:after {
    left: 0;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 100% 100%;
       -moz-transform-origin: 100% 100%;
        -ms-transform-origin: 100% 100%;
         -o-transform-origin: 100% 100%;
            transform-origin :100% 100%;
}
&lt;/style&gt;</pre><p></p>
<p>Unendlich:</p>
<style type="text/css">
#infinity {position: relative;width: 212px; height: 100px;}
#infinity:before,#infinity:after {content: "";position: absolute;top: 0;left: 0;width: 60px;height: 60px;border: 20px solid red;-moz-border-radius: 50px 50px 0 50px;border-radius: 50px 50px 0 50px;-webkit-transform: rotate(-45deg);-moz-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);}
#infinity:after {left: auto;right: 0;-moz-border-radius: 50px 50px 50px 0;border-radius: 50px 50px 50px 0;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg);}	
</style>
<div id="infinity"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#infinity {
    position: relative;
    width: 212px;
    height: 100px;
}

#infinity:before,
#infinity:after {
    content: &quot;&quot;;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;    
    border: 20px solid red;
    -moz-border-radius: 50px 50px 0 50px;
         border-radius: 50px 50px 0 50px;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

#infinity:after {
    left: auto;
    right: 0;
    -moz-border-radius: 50px 50px 50px 0;
         border-radius: 50px 50px 50px 0;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
}
&lt;/style&gt;</pre><p></p>
<p>Diamant:</p>
<style type="text/css">
#diamond {
   width: 80px; 
   height: 80px; 
   background: red;
   margin: 25px 0 15px 35px;
   -webkit-transform: rotate(-45deg);
   -moz-transform:    rotate(-45deg);
   -ms-transform:     rotate(-45deg);
   -o-transform: rotate(-45deg);
   transform: rotate(-45deg);
   -webkit-transform-origin: 0 100%;
   -moz-transform-origin: 0 100%;
   -ms-transform-origin: 0 100%;
   -o-transform-origin: 0 100%;
   transform-origin: 0 100%;
}
</style>
<div id="diamond"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#diamond {
   width: 80px; 
   height: 80px; 
   background: red;
   margin: 25px 0 15px 35px;
   -webkit-transform: rotate(-45deg);
   -moz-transform:    rotate(-45deg);
   -ms-transform:     rotate(-45deg);
   -o-transform: rotate(-45deg);
   transform: rotate(-45deg);
   -webkit-transform-origin: 0 100%;
   -moz-transform-origin: 0 100%;
   -ms-transform-origin: 0 100%;
   -o-transform-origin: 0 100%;
   transform-origin: 0 100%;
}
&lt;/style&gt;</pre><p></p>
<p>Ei:</p>
<style type="text/css">
#egg {
   display:block;
   width: 126px; 
   height: 180px;
   background-color: red;
   -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px;
   border-radius:        50%   50%  50%  50%  / 60%   60%   40%  40%;
}
</style>
<div id="egg"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#egg {
   display:block;
   width: 126px; 
   height: 180px;
   background-color: red;
   -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px;
   border-radius:        50%   50%  50%  50%  / 60%   60%   40%  40%;
}
&lt;/style&gt;</pre><p></p>
<p>Pac-Man:</p>
<style type="text/css">
#pacman {
  width: 0px;
  height: 0px;
  border-right: 60px solid transparent;
  border-top: 60px solid red;
  border-left: 60px solid red;
  border-bottom: 60px solid red;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
</style>
<div id="pacman"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#pacman {
  width: 0px;
  height: 0px;
  border-right: 60px solid transparent;
  border-top: 60px solid red;
  border-left: 60px solid red;
  border-bottom: 60px solid red;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
&lt;/style&gt;</pre><p></p>
<p>Sprechblase:</p>
<style type="text/css">
#talkbubble {
   width: 120px; 
   height: 80px; 
   background: red;
   position: relative;
   -moz-border-radius:    10px; 
   -webkit-border-radius: 10px; 
   border-radius:         10px;
}
#talkbubble:before {
   content:"";
   position: absolute;
   right: 100%;
   top: 26px;
   width: 0;
   height: 0;
   border-top: 13px solid transparent;
   border-right: 26px solid red;
   border-bottom: 13px solid transparent;
}
</style>
<div id="talkbubble"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#talkbubble {
   width: 120px; 
   height: 80px; 
   background: red;
   position: relative;
   -moz-border-radius:    10px; 
   -webkit-border-radius: 10px; 
   border-radius:         10px;
}
#talkbubble:before {
   content:&quot;&quot;;
   position: absolute;
   right: 100%;
   top: 26px;
   width: 0;
   height: 0;
   border-top: 13px solid transparent;
   border-right: 26px solid red;
   border-bottom: 13px solid transparent;
}
&lt;/style&gt;</pre><p></p>
<p>12-Punkte-Stern:</p>
<style type="text/css">
#burst-12 {
    background: red;
    width: 80px;
    height: 80px;
    position: relative;
    text-align: center;
}
#burst-12:before, #burst-12:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
    background: red;
}
#burst-12:before {
    -webkit-transform: rotate(30deg);
       -moz-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
         -o-transform: rotate(30deg);
            transform: rotate(30deg);
}
#burst-12:after {
    -webkit-transform: rotate(60deg);
       -moz-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
         -o-transform: rotate(60deg);
            transform: rotate(60deg);
}
</style>
<div id="burst-12"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#burst-12 {
    background: red;
    width: 80px;
    height: 80px;
    position: relative;
    text-align: center;
}
#burst-12:before, #burst-12:after {
    content: &quot;&quot;;
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
    background: red;
}
#burst-12:before {
    -webkit-transform: rotate(30deg);
       -moz-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
         -o-transform: rotate(30deg);
            transform: rotate(30deg);
}
#burst-12:after {
    -webkit-transform: rotate(60deg);
       -moz-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
         -o-transform: rotate(60deg);
            transform: rotate(60deg);
}
&lt;/style&gt;</pre><p></p>
<p>8-Punkte-Stern:</p>
<style type="text/css">
#burst-8 {
    background: red;
    width: 80px;
    height: 80px;
    position: relative;
    text-align: center;
    -webkit-transform: rotate(20deg);
       -moz-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
         -o-transform: rotate(20eg);
            transform: rotate(20deg);
}
#burst-8:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
    background: red;
    -webkit-transform: rotate(135deg);
       -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
         -o-transform: rotate(135deg);
            transform: rotate(135deg);
}
</style>
<div id="burst-8"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#burst-8 {
    background: red;
    width: 80px;
    height: 80px;
    position: relative;
    text-align: center;
    -webkit-transform: rotate(20deg);
       -moz-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
         -o-transform: rotate(20eg);
            transform: rotate(20deg);
}
#burst-8:before {
    content: &quot;&quot;;
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
    background: red;
    -webkit-transform: rotate(135deg);
       -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
         -o-transform: rotate(135deg);
            transform: rotate(135deg);
}
&lt;/style&gt;</pre><p></p>
<p>Diamand:</p>
<style type="text/css">
#cut-diamond {
    border-style: solid;
    border-color: transparent transparent red transparent;
    border-width: 0 25px 25px 25px;
    height: 0;
    width: 50px;
    position: relative;
    margin: 20px 0 50px 0;
}
#cut-diamond:after {
    content: "";
    position: absolute;
    top: 25px;
    left: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: red transparent transparent transparent;
    border-width: 70px 50px 0 50px;
}
</style>
<div id="cut-diamond"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#cut-diamond {
    border-style: solid;
    border-color: transparent transparent red transparent;
    border-width: 0 25px 25px 25px;
    height: 0;
    width: 50px;
    position: relative;
    margin: 20px 0 50px 0;
}
#cut-diamond:after {
    content: &quot;&quot;;
    position: absolute;
    top: 25px;
    left: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: red transparent transparent transparent;
    border-width: 70px 50px 0 50px;
}
&lt;/style&gt;</pre><p></p>
<p>Yin Yang:</p>
<style type="text/css">
#yin-yang {width: 96px;height: 48px;background: #eee;border-color: red;border-style: solid;border-width: 2px 2px 50px 2px;border-radius: 100%;position: relative;}
#yin-yang:before {content: "";position: absolute;top: 50%;left: 0;background: #eee;border: 18px solid red;border-radius: 100%;width: 12px;height: 12px;}
#yin-yang:after {content: "";position: absolute;top: 50%;left: 50%;background: red;border: 18px solid #eee;border-radius:100%;width: 12px;height: 12px;} 
</style>
<div id="yin-yang"></div>
<p></p><pre class="crayon-plain-tag">&lt;style type=&quot;text/css&quot;&gt;
#yin-yang {
	width: 96px;
	height: 48px;
	background: #eee;
	border-color: red;
	border-style: solid;
	border-width: 2px 2px 50px 2px;
	border-radius: 100%;
	position: relative;
}

#yin-yang:before {
	content: &quot;&quot;;
	position: absolute;
	top: 50%;
	left: 0;
	background: #eee;
	border: 18px solid red;
	border-radius: 100%;
	width: 12px;
	height: 12px;
}

#yin-yang:after {
	content: &quot;&quot;;
	position: absolute;
	top: 50%;
	left: 50%;
	background: red;
	border: 18px solid #eee;
	border-radius:100%;
	width: 12px;
	height: 12px;
} 
&lt;/style&gt;</pre><p></p>
<p><a href="http://css-tricks.com/examples/ShapesOfCSS/#" title="CSS-TRICKS">DEMO und QUELLE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/diese-formen-kann-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bei PHP REGISTER_GLOBALS umgehen</title>
		<link>http://asabie.de/bei-php-register_globals-umgehen/</link>
		<comments>http://asabie.de/bei-php-register_globals-umgehen/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 11:24:35 +0000</pubDate>
		<dc:creator>Roland Köster</dc:creator>
				<category><![CDATA[PHP-Snippets]]></category>
		<category><![CDATA[austricksen]]></category>
		<category><![CDATA[Register_Globals]]></category>
		<category><![CDATA[temp]]></category>
		<category><![CDATA[umgehen]]></category>

		<guid isPermaLink="false">http://asabie.de/?p=148</guid>
		<description><![CDATA[Manche Scripte funktionieren nur wenn in der PHP .ini REGISTER_GLOBALS=on stehen. SOllte es der Fall sein das Sie off steht, liegt es meist am Provider, der aus Sicherheitsgründen es off geschaltet hat. Mit einen kleinen PHP-Code könnt Ihr alles wieder &#8230; <a href="http://asabie.de/bei-php-register_globals-umgehen/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Manche Scripte funktionieren nur wenn in der PHP .ini REGISTER_GLOBALS=on stehen. SOllte es der Fall sein das Sie off steht, liegt es meist am Provider, der aus Sicherheitsgründen es <span id="more-148"></span>off geschaltet hat. Mit einen kleinen PHP-Code könnt Ihr alles wieder zu laufen bekommen.</p>
<p></p><pre class="crayon-plain-tag">&lt;?php

       /*  Register_Globals umgehen  */
      
       if (isset($HTTP_GET_VARS)) {
            extract($HTTP_GET_VARS);
       }
       if(isset($HTTP_POST_VARS)) {
	    extract($HTTP_POST_VARS); 
       }
?&gt;</pre><p>   </p>
<p>Aber um es auf jeden Fall sauberer zu machen programmiert lieber gleich<br />
richtig, in dem ihr mit $_POST['variable'] oder $_GET['variable'] arbeitet!</p>
]]></content:encoded>
			<wfw:commentRss>http://asabie.de/bei-php-register_globals-umgehen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

