<?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>Der Blog von Benny Neugebauer &#187; HTML</title>
	<atom:link href="http://www.bennyn.de/programmierung/html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bennyn.de</link>
	<description>Alles über die Informatik &#38; Co.</description>
	<lastBuildDate>Wed, 08 Feb 2012 16:31:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Div Element horizontal und vertikal zentrieren</title>
		<link>http://www.bennyn.de/programmierung/css/div-element-horizontal-und-vertikal-zentrieren.html</link>
		<comments>http://www.bennyn.de/programmierung/css/div-element-horizontal-und-vertikal-zentrieren.html#comments</comments>
		<pubDate>Fri, 27 Jan 2012 12:16:14 +0000</pubDate>
		<dc:creator>bennyn</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[element]]></category>
		<category><![CDATA[horizontal]]></category>
		<category><![CDATA[vertikal]]></category>
		<category><![CDATA[zentrieren]]></category>

		<guid isPermaLink="false">http://www.bennyn.de/?p=3140</guid>
		<description><![CDATA[Ein Code sagt mehr als tausend Worte: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; &#60;meta charset=&#34;utf-8&#34; /&#62; &#60;title&#62;Centering a Div horizontally and vertically&#60;/title&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Ein Code sagt mehr als tausend Worte:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!</span>DOCTYPE html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>html<span style="color: #339933;">&gt;</span>
  <span style="color: #339933;">&lt;</span>head<span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">&lt;</span>meta charset<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;utf-8&quot;</span> <span style="color: #339933;">/&gt;</span>
    <span style="color: #339933;">&lt;</span>title<span style="color: #339933;">&gt;</span>Centering a Div horizontally and vertically<span style="color: #339933;">&lt;/</span>title<span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">&lt;</span>style type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/css&quot;</span><span style="color: #339933;">&gt;</span>
      html
      <span style="color: #009900;">&#123;</span>
        background<span style="color: #339933;">-</span>color<span style="color: #339933;">:</span> black<span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
&nbsp;
      body
      <span style="color: #009900;">&#123;</span>
        width<span style="color: #339933;">:</span> <span style="color: #cc66cc;">100</span><span style="color: #339933;">%;</span>
        height<span style="color: #339933;">:</span> <span style="color: #cc66cc;">100</span><span style="color: #339933;">%;</span>
        position<span style="color: #339933;">:</span> static<span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">/* don't make it relative! */</span>
      <span style="color: #009900;">&#125;</span>
&nbsp;
      <span style="color: #666666; font-style: italic;">#centered
</span>      <span style="color: #009900;">&#123;</span>
        position<span style="color: #339933;">:</span> absolute<span style="color: #339933;">;</span>
        height<span style="color: #339933;">:</span> 396px<span style="color: #339933;">;</span>
        width<span style="color: #339933;">:</span> 400px<span style="color: #339933;">;</span>
        margin<span style="color: #339933;">:</span> <span style="color: #339933;">-</span>198px 0px 0px <span style="color: #339933;">-</span>200px<span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">/* 50% height, 0px, 0px, 50% width */</span>
        top<span style="color: #339933;">:</span> <span style="color: #cc66cc;">50</span><span style="color: #339933;">%;</span>
        left<span style="color: #339933;">:</span> <span style="color: #cc66cc;">50</span><span style="color: #339933;">%;</span>
        background<span style="color: #339933;">-</span>color<span style="color: #339933;">:</span> violet<span style="color: #339933;">;</span>
        border<span style="color: #339933;">:</span> 1px solid white<span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #339933;">&lt;/</span>style<span style="color: #339933;">&gt;</span>
  <span style="color: #339933;">&lt;/</span>head<span style="color: #339933;">&gt;</span>
  <span style="color: #339933;">&lt;</span>body<span style="color: #339933;">&gt;</span>  
    <span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;centered&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span>
  <span style="color: #339933;">&lt;/</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bennyn.de/programmierung/css/div-element-horizontal-und-vertikal-zentrieren.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer Kompatibilitätsansicht verhindern</title>
		<link>http://www.bennyn.de/programmierung/html/internet-explorer-kompatibilitatsansicht-verhindern.html</link>
		<comments>http://www.bennyn.de/programmierung/html/internet-explorer-kompatibilitatsansicht-verhindern.html#comments</comments>
		<pubDate>Thu, 10 Nov 2011 10:38:08 +0000</pubDate>
		<dc:creator>bennyn</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Compatibility Mode]]></category>
		<category><![CDATA[EmulateIE7]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Kompatibilitätsansicht]]></category>
		<category><![CDATA[X-UA-Compatible]]></category>

		<guid isPermaLink="false">http://www.bennyn.de/?p=2926</guid>
		<description><![CDATA[Mit dem Internet Explorer 8 hat Microsoft die Kompatibilitätsansicht eingeführt. Mit der Kompatibilitätsansicht wird die Rendering-Engine des Internet Explorers auf eine Vorversion gestellt, wodurch Webseiten, die für ältere IE-Versionen entworfen wurden, besser angezeigt werden können. Der &#8220;Compatibility Mode&#8221; wird durch ein Icon in der Adresszeile eingeschaltet. Kompatibilitätsansicht im IE9 Für Webdesigner ist das Icon der [...]]]></description>
			<content:encoded><![CDATA[<p>Mit dem <strong>Internet Explorer 8</strong> hat Microsoft die <strong>Kompatibilitätsansicht</strong> eingeführt. Mit der Kompatibilitätsansicht wird die Rendering-Engine des Internet Explorers auf eine Vorversion gestellt, wodurch Webseiten, die für ältere IE-Versionen entworfen wurden, besser angezeigt werden können. Der &#8220;Compatibility Mode&#8221; wird durch ein Icon in der Adresszeile eingeschaltet.</p>
<div class="aligncenter"><a href="http://www.bennyn.de/wp-content/uploads/compatibility_mode.png"><img src="http://www.bennyn.de/wp-content/uploads/compatibility_mode.png" alt="" title="compatibility_mode" width="205" height="109" style="border:1px solid black;" class="size-full wp-image-2930" /></a><br/><em>Kompatibilitätsansicht im IE9</em></div>
<p>Für Webdesigner ist das <strong>Icon der Kompatibilitätsansicht</strong> ein Dorn im Auge, da es aussieht wie ein zerrissenes Dokument und dadurch der Eindruck entsteht, dass etwas mit der eigenen Webseite nicht in Ordnung ist. Um das Icon zu entfernen, muss die eigene Webseite selbst den Kompatibilitätsmodus bestimmen. Dazu wird der kompatible User-Agent als Meta-Tag für den Internet Explorer im head-Bereich der Seite angegeben:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;head&gt;
  &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=EmulateIE7&quot; &gt;
  &lt;title&gt;My Web Page&lt;/title&gt;
&lt;/head&gt;</pre></td></tr></table></div>

<p>Die gezeigte Variante stellt die Render-Engine des Internet Explorers auf die Version von Internet Explorer 7 um, was dazu führt dass beispielsweise ein Internet Explorer 9 die Webseite anzeigt wie der IE7.</p>
<p>Möchte man sich nicht auf eine spezielle IE-Version festlegen, sondern immer die Aktuellste benutzen, so muss folgender Eintrag gemacht werden:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;/&gt;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bennyn.de/programmierung/html/internet-explorer-kompatibilitatsansicht-verhindern.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suckerfish CSS done right!</title>
		<link>http://www.bennyn.de/programmierung/css/suckerfish-css-done-right.html</link>
		<comments>http://www.bennyn.de/programmierung/css/suckerfish-css-done-right.html#comments</comments>
		<pubDate>Tue, 19 Apr 2011 19:14:51 +0000</pubDate>
		<dc:creator>bennyn</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Menü]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Submenü]]></category>
		<category><![CDATA[Suckerfish]]></category>

		<guid isPermaLink="false">http://www.bennyn.de/?p=2444</guid>
		<description><![CDATA[Vor ein paar Tagen wollte ich ein modernes HTML-Submenü bauen, welches aufklappt, wenn man mit der Maus über einen Menüpunkt fährt. Auf diversen Seiten habe ich gesehen, dass viele diese Technik mit JavaScript realisieren. Ich finde das übertrieben, da sich dieser Effekt auch mit der CSS &#8220;hover&#8221;-Eigenschaft für Listenelemente lösen lässt (Stichwort: Suckerfish CSS). Das [...]]]></description>
			<content:encoded><![CDATA[<p>Vor ein paar Tagen wollte ich ein modernes <strong>HTML-Submenü</strong> bauen, welches aufklappt, wenn man mit der Maus über einen Menüpunkt fährt. </p>
<p>Auf diversen Seiten habe ich gesehen, dass viele diese Technik mit JavaScript realisieren. Ich finde das übertrieben, da sich dieser Effekt auch mit der CSS &#8220;hover&#8221;-Eigenschaft für Listenelemente lösen lässt (<em>Stichwort: Suckerfish CSS</em>). Das funktioniert aber nur in aktuellen Browsern. </p>
<p>Der Internet Explorer 6 unterstützt die &#8220;hover&#8221;-Eigenschaft nämlich nur für Anker. Wie ich leider feststellen musste, gibt es noch weitere Besonderheiten die man beachten muss. Nach 2 Stunden Arbeit habe ich dann aber einen Code entwickelt, der barrierefrei (ohne den Einsatz von display:none und visibility:hidden) ist und problemlos in Firefox und Internet Explorer 6-7 funktioniert (andere Browser wurden nicht getestet).</p>
<h2>Screenshot:</h2>
<p><a href="http://www.bennyn.de/wp-content/uploads/suckerfish_css.png"><img src="http://www.bennyn.de/wp-content/uploads/suckerfish_css-300x178.png" alt="" title="suckerfish_css" width="300" height="178" style="border:1px solid black;" /></a></p>
<p><span id="more-2444"></span></p>
<h2>Code:</h2>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.1//EN&quot;
	&quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&quot;&gt;
&lt;html&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=EmulateIE7&quot; /&gt;
		&lt;title&gt;Floating Navigation&lt;/title&gt;
		&lt;style type=&quot;text/css&quot;&gt;
		*
		{
			margin: 0; padding: 0; border: 0;
		}
&nbsp;
		#navMenu ul
		{
			line-height: 30px;
		}
&nbsp;
		#navMenu li
		{
			list-style: none;
			float: left;
			position: relative;
		}
&nbsp;
		#navMenu a
		{
			text-align: center;
			display: block;
			width: 100px;
			height: 30px;				
		}
&nbsp;
		/* nested list */
		#navMenu ul ul
		{			
			top: 30px;
			position: absolute;
			left: -999em;
		}
&nbsp;
		#navMenu li:hover ul,
		#navMenu li.sfhover ul
		{
			left: auto;
		}
&nbsp;
		/* IE7 fix: Prevents that the submenu disappears. */
		#navMenu ul ul 
		{
			background: white;
		}
&nbsp;
		/* IE6 fix: Displays the submenu items among each other. */
		#navMenu li.sfhover ul
		{
			width: 100px;
		}
		&lt;/style&gt;
		&lt;!--[if IE 6]&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
		sfHover = function()
		{
			var sfEls = document.getElementById(&quot;navMenu&quot;).getElementsByTagName(&quot;LI&quot;);
			for (var i=0; i&lt;sfEls.length; i++)
			{
				sfEls[i].onmouseover=function()
				{ this.className+=&quot; sfhover&quot;; }
				sfEls[i].onmouseout=function()
				{ this.className=this.className.replace(new RegExp(&quot; sfhover\\b&quot;), &quot;&quot;); }
			}
		}
		if (window.attachEvent) window.attachEvent(&quot;onload&quot;, sfHover);
		&lt;/script&gt;
		&lt;![endif]--&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;div id=&quot;wrapper&quot;&gt;
			&lt;div id=&quot;navMenu&quot;&gt;
				&lt;ul&gt;
					&lt;li&gt;
						&lt;a href=&quot;#&quot;&gt;Menu 1&lt;/a&gt;
						&lt;ul&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 1&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 2&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 3&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 4&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 5&lt;/a&gt;&lt;/li&gt;
						&lt;/ul&gt;
					&lt;/li&gt;
					&lt;li&gt;
						&lt;a href=&quot;#&quot;&gt;Menu 2&lt;/a&gt;
						&lt;ul&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 1&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 2&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 3&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 4&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 5&lt;/a&gt;&lt;/li&gt;
						&lt;/ul&gt;						
					&lt;/li&gt;
					&lt;li&gt;
						&lt;a href=&quot;#&quot;&gt;Menu 3&lt;/a&gt;
						&lt;ul&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 1&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 2&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 3&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 4&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 5&lt;/a&gt;&lt;/li&gt;
						&lt;/ul&gt;						
					&lt;/li&gt;
					&lt;li&gt;
						&lt;a href=&quot;#&quot;&gt;Menu 4&lt;/a&gt;
						&lt;ul&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 1&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 2&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 3&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 4&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Submenu 5&lt;/a&gt;&lt;/li&gt;
						&lt;/ul&gt;						
					&lt;/li&gt;
				&lt;/ul&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<p><u>Hinweis:</u> Alle Menüpunkte sind 30 Pixel hoch und 100 Pixel breit. Der gewählte DOCTYPE und die &#8220;X-UA-Compatible&#8221;-Eigenschaft sind wichtig für die korrekte Darstellung im Internet Explorer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bennyn.de/programmierung/css/suckerfish-css-done-right.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>W3C valides JavaScript</title>
		<link>http://www.bennyn.de/programmierung/html/w3c-valides-javascript.html</link>
		<comments>http://www.bennyn.de/programmierung/html/w3c-valides-javascript.html#comments</comments>
		<pubDate>Sat, 09 Apr 2011 15:44:32 +0000</pubDate>
		<dc:creator>bennyn</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Standard]]></category>
		<category><![CDATA[Validierung]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://www.bennyn.de/?p=2425</guid>
		<description><![CDATA[Wer das Tag &#60;script type="text/javascript"&#62; direkt im &#60;head&#62; Teil seiner HTML-Seite verwendet, der kann Probleme bei der W3C-Validierung seines Dokumentes bekommen, wenn innerhalb des JavaScript-Tags nach dem HTML-Standard unerlaubte Elemente enthalten sind. Typische Fehlermeldungen dafür sind: character &#8220;&#038;&#8221; is the first character of a delimiter but occurred as data cannot generate system identifier for general [...]]]></description>
			<content:encoded><![CDATA[<p>Wer das Tag <code>&lt;script type="text/javascript"&gt;</code> direkt im <code>&lt;head&gt;</code> Teil seiner HTML-Seite verwendet, der kann Probleme bei der W3C-Validierung seines Dokumentes bekommen, wenn innerhalb des JavaScript-Tags nach dem HTML-Standard unerlaubte Elemente enthalten sind.</p>
<p>Typische Fehlermeldungen dafür sind:</p>
<ul>
<li>character &#8220;&#038;&#8221; is the first character of a delimiter but occurred as data</li>
<li>cannot generate system identifier for general entity &#8220;document.getElementById&#8221;</li>
<li>general entity &#8220;document.getElementById&#8221; not defined and no default entity</li>
<li>reference not terminated by REFC delimiter</li>
<li>reference to entity &#8220;document.getElementById&#8221; for which no system identifier could be generated</li>
<li>character &#8220;;&#8221; not allowed in attribute specification list</li>
<li>element &#8220;navRoot.childNodes.length&#8221; undefined</li>
<li>end tag for &#8220;navRoot.childNodes.length&#8221; omitted, but OMITTAG NO was specified</li>
</ul>
<p>Man kann dieses Manko umgehen, wenn man diese Deklaration ändert:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #009966; font-style: italic;">/* My Code */</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Undzwar in:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;!--</span><span style="color: #006600; font-style: italic;">//--&gt;&lt;![CDATA[//&gt;&lt;!--</span>
<span style="color: #009966; font-style: italic;">/* My Code */</span>
<span style="color: #006600; font-style: italic;">//--&gt;&lt;!]]&gt;&lt;/script&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bennyn.de/programmierung/html/w3c-valides-javascript.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HTML Inline und Block Elemente</title>
		<link>http://www.bennyn.de/programmierung/html/html-inline-und-block-elemente.html</link>
		<comments>http://www.bennyn.de/programmierung/html/html-inline-und-block-elemente.html#comments</comments>
		<pubDate>Thu, 03 Mar 2011 23:29:46 +0000</pubDate>
		<dc:creator>bennyn</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Block]]></category>
		<category><![CDATA[Elemente]]></category>
		<category><![CDATA[Inline]]></category>

		<guid isPermaLink="false">http://www.bennyn.de/?p=2387</guid>
		<description><![CDATA[HTML-Elemente werden grundsätzlich in zwei Arten unterschieden, undzwar in Inline und Block Elemente. Block-Elemente erzeugen einen Zeilenumbruch und können andere Inline-Elemente enthalten. Inline-Elemente hingegen erzeugen keinen Zeilenumbruch und dürfen auch keine Blöcke enthalten; nur weitere Inline-Tags sind gestattet. Liste der Block-Elemente address blockquote center del dir div dl fieldset form h h h h h [...]]]></description>
			<content:encoded><![CDATA[<p><strong>HTML-Elemente</strong> werden grundsätzlich in zwei Arten unterschieden, undzwar in Inline und Block Elemente. <strong>Block-Elemente</strong> erzeugen einen Zeilenumbruch und können andere Inline-Elemente enthalten. <strong>Inline-Elemente</strong> hingegen erzeugen keinen Zeilenumbruch und dürfen auch keine Blöcke enthalten; nur weitere Inline-Tags sind gestattet.<br />
<span id="more-2387"></span></p>
<h2>Liste der Block-Elemente</h2>
<ul>
<li>address</li>
<li>blockquote</li>
<li>center</li>
<li>del</li>
<li>dir</li>
<li>div</li>
<li>dl</li>
<li>fieldset</li>
<li>form</li>
<li>h</li>
<li>h</li>
<li>h</li>
<li>h</li>
<li>h</li>
<li>h</li>
<li>hr</li>
<li>ins</li>
<li>isindex</li>
<li>menu</li>
<li>noframes</li>
<li>noscript</li>
<li>ol</li>
<li>p</li>
<li>pre</li>
<li>table</li>
<li>u</li>
</ul>
<h2>Liste der Inline-Elemente</h2>
<ul>
<li>a</li>
<li>abbr</li>
<li>acronym</li>
<li>applet</li>
<li>b</li>
<li>basefont</li>
<li>bdo</li>
<li>big</li>
<li>br</li>
<li>button</li>
<li>cite</li>
<li>code</li>
<li>del</li>
<li>dfn</li>
<li>em</li>
<li>font</li>
<li>i</li>
<li>img</li>
<li>ins</li>
<li>input</li>
<li>iframe</li>
<li>kbd</li>
<li>label</li>
<li>map</li>
<li>object</li>
<li>q</li>
<li>samp</li>
<li>script</li>
<li>select</li>
<li>small</li>
<li>span</li>
<li>strong</li>
<li>sub</li>
<li>sup</li>
<li>textarea</li>
<li>tt</li>
<li>va</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bennyn.de/programmierung/html/html-inline-und-block-elemente.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

