<?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>Beckdoor.de &#187; HTML</title>
	<atom:link href="http://beckdoor.de/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://beckdoor.de</link>
	<description>Über Entwicklung von Software und Menschen in Projekten</description>
	<lastBuildDate>Fri, 25 Nov 2011 13:39:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Regulärer Ausdruck um URL&#8217;s als Link zu formatieren</title>
		<link>http://beckdoor.de/uris-mit-regularem-ausdruck-mit-dem-html-anker-versehen/04/11/2009/</link>
		<comments>http://beckdoor.de/uris-mit-regularem-ausdruck-mit-dem-html-anker-versehen/04/11/2009/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 13:09:02 +0000</pubDate>
		<dc:creator>Kai</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[RegularExpressions]]></category>

		<guid isPermaLink="false">http://beckdoor.de/wpress/?p=49</guid>
		<description><![CDATA[Suchen nach:
(http://[a-z,0-9,/,?,&#38;,=,+,\.,_,#,\-,~,\(,\)]*)
Ersetzen durch:
&#60;a href=\&#8221;\1\&#8221; target=\&#8221;_blank\&#8221;&#62;\1&#60;/a&#62;
Bemerkung:
Die Anführungszeichen werden im Ergebnis mit \ escaped. Wenn das nicht notwendig ist, einfach in der Ersetzung die Rückwärts-Schrägstriche vor den Anführungszeichen entfernen.
]]></description>
			<content:encoded><![CDATA[<p>Suchen nach:</p>
<p>(http://[a-z,0-9,/,?,&amp;,=,+,\.,_,#,\-,~,\(,\)]*)</p>
<p>Ersetzen durch:</p>
<p>&lt;a href=\&#8221;\1\&#8221; target=\&#8221;_blank\&#8221;&gt;\1&lt;/a&gt;</p>
<p>Bemerkung:</p>
<p>Die Anführungszeichen werden im Ergebnis mit \ escaped. Wenn das nicht notwendig ist, einfach in der Ersetzung die Rückwärts-Schrägstriche vor den Anführungszeichen entfernen.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckdoor.de/uris-mit-regularem-ausdruck-mit-dem-html-anker-versehen/04/11/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS: vertikal und horizontal zentrieren</title>
		<link>http://beckdoor.de/css-vertikal-und-horizontal-zentrieren/23/10/2008/</link>
		<comments>http://beckdoor.de/css-vertikal-und-horizontal-zentrieren/23/10/2008/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 22:12:21 +0000</pubDate>
		<dc:creator>Kai</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://beckdoor.de/wpress/css-vertikal-und-horizontal-zentrieren/23/10/2008/</guid>
		<description><![CDATA[Das ist mit CSS nicht ohne weiteres möglich. Diese Lösung funktioniert mit sogut wie allen Browsern.
Vollständiges Codebeispiel:

&#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01//EN&#34;&#62;
&#60;html&#62;
&#60;head&#62;
&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=iso-8859-1&#34;&#62;
&#60;title&#62;CSS vertical center using float and clear&#60;/title&#62;
&#60;style type=&#34;text/css&#34;&#62;
* {	margin:0;
 padding:0;
 }
html, body {
 height:100%;
 }
body {
 text-align:center; /* horizontal centering for IE Win quirks */
 }
#distance {
 width:1px;
 height:50%;
 margin-bottom:-10em; /* [...]]]></description>
			<content:encoded><![CDATA[<p>Das ist mit CSS nicht ohne weiteres möglich. Diese Lösung funktioniert mit sogut wie allen Browsern.</p>
<p>Vollständiges Codebeispiel:</p>
<pre class="brush: xml;">
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;title&gt;CSS vertical center using float and clear&lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;
* {	margin:0;
 padding:0;
 }
html, body {
 height:100%;
 }
body {
 text-align:center; /* horizontal centering for IE Win quirks */
 }
#distance {
 width:1px;
 height:50%;
 margin-bottom:-10em; /* half of container's height */
 float:left;
 }
#container {
 margin:0 auto;
 position:relative; /* puts container in front of distance */
 text-align:left;
 height:20em;
 width:20em;
 clear:left;
 background-color:yellow; /* for demo purpose only */
 }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id=&quot;distance&quot;&gt;&lt;/div&gt;
 &lt;div id=&quot;container&quot;&gt;
&lt;p&gt;&lt;strong&gt;CSS vertical and horizontal centering&lt;br&gt;
 using float and clear&lt;br&gt;crossbrowser&lt;/strong&gt;&lt;/p&gt;
 &lt;p&gt;This box stays in the middle of the browser's viewport.&lt;/p&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://beckdoor.de/css-vertikal-und-horizontal-zentrieren/23/10/2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML/CSS: Listenelemente horizontal verteilen</title>
		<link>http://beckdoor.de/htmlcss-listenelemente-horizontal-verteilen/19/08/2008/</link>
		<comments>http://beckdoor.de/htmlcss-listenelemente-horizontal-verteilen/19/08/2008/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 13:38:42 +0000</pubDate>
		<dc:creator>Kai</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[SW-Entwicklung]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://beckdoor.de/wpress/htmlcss-listenelemente-horizontal-verteilen/19/08/2008/</guid>
		<description><![CDATA[Für Einträge mit gleichem Abstand eignet sich:


li { display:inline; }

Für gleichverteilte Listeneinträge hingegen:


float:left;

Im zweiten Fall kann man noch eine Breite mit width vergeben, weil das li Element weiterhin als Block-Element behandelt wird. Damit ist die Breite eines Listeneintrages unabhängig von dessen Inhalt.
Bei Inline Elementen ist das nicht mehr möglich. Hier kann man mit padding für [...]]]></description>
			<content:encoded><![CDATA[<p>Für Einträge mit gleichem Abstand eignet sich:</p>
<pre class="brush: css; gutter: false;">

li { display:inline; }
</pre>
<p>Für gleichverteilte Listeneinträge hingegen:</p>
<pre class="brush: css; gutter: false;">

float:left;
</pre>
<p>Im zweiten Fall kann man noch eine Breite mit width vergeben, weil das li Element weiterhin als Block-Element behandelt wird. Damit ist die Breite eines Listeneintrages unabhängig von dessen Inhalt.</p>
<p>Bei Inline Elementen ist das nicht mehr möglich. Hier kann man mit padding für Abstand sorgen. Beispiel:</p>
<p>Stylesheet:</p>
<pre class="brush: css; gutter: false;">
 ul { padding-left:0; margin:0; }
 li { display:inline; padding-left:45px; }
 li.first { padding-left:0; }
</pre>
<p>HTML:</p>
<pre class="brush: xml; gutter: false;">
&lt;ul&gt;
  &lt;li class=&quot;first&quot;&gt;Erster&lt;/li&gt;
  &lt;li&gt;Zweiter&lt;/li&gt;
  &lt;li&gt;Letzter&lt;/li&gt;
&lt;/ul&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://beckdoor.de/htmlcss-listenelemente-horizontal-verteilen/19/08/2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

