<?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>Jontas &#187; HTML</title>
	<atom:link href="http://www.f15ijp.com/category/development/html-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.f15ijp.com</link>
	<description>My digital notepad (notes etc)</description>
	<lastBuildDate>Wed, 28 Dec 2011 18:24:47 +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>add a header to a html list</title>
		<link>http://www.f15ijp.com/2011/04/13/add-a-header-to-a-html-list/</link>
		<comments>http://www.f15ijp.com/2011/04/13/add-a-header-to-a-html-list/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 12:00:07 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[li]]></category>
		<category><![CDATA[ol]]></category>
		<category><![CDATA[ul]]></category>
		<category><![CDATA[XHTML 1.0 Transition]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=795</guid>
		<description><![CDATA[To get a header line in a html list the easiset way is to use the style list-style-type:none &#60;ul&#62; &#60;li style=&#34;list-style-type:none&#34;&#62;Heading&#60;/li&#62; &#60;li&#62;List items&#60;/li&#62; &#60;/ul&#62;]]></description>
			<content:encoded><![CDATA[<p>To get a header line in a html list the easiset way is to use the style list-style-type:none</p>

<div class="wp_syntax"><div class="code"><pre class="xhtml" style="font-family:monospace;">&lt;ul&gt;
    &lt;li style=&quot;list-style-type:none&quot;&gt;Heading&lt;/li&gt;
    &lt;li&gt;List items&lt;/li&gt;
&lt;/ul&gt;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/04/13/add-a-header-to-a-html-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer not rendering empty div correctly</title>
		<link>http://www.f15ijp.com/2010/11/27/internet-explorer-not-rendering-empty-div-correctly/</link>
		<comments>http://www.f15ijp.com/2010/11/27/internet-explorer-not-rendering-empty-div-correctly/#comments</comments>
		<pubDate>Sat, 27 Nov 2010 15:49:11 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css2]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=741</guid>
		<description><![CDATA[Internet Explorer won&#8217;t render empty divs correctly. I had a div with a height and a background image but no content; It was not rendered with the correct height it was only like one line. A work around for this is to have some &#8220;content&#8221; inside the div (like a whitespace, a comment or why [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer won&#8217;t render empty divs correctly.</p>
<p>I had a div with a height and a background image but no content; It was not rendered with the correct height it was only like one line.</p>
<p>A work around for this is to have some &#8220;content&#8221; inside the div (like a whitespace, a comment or why not both) then Internet Explorer renders the correct height.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;some-class-with-size-and-background&quot;&gt;
&amp;nbsp;&lt;!-- keep to get IE to render this div --&gt;
&lt;/div&gt;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2010/11/27/internet-explorer-not-rendering-empty-div-correctly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML: UTF-8 encoding</title>
		<link>http://www.f15ijp.com/2010/07/14/html-utf-8-encoding/</link>
		<comments>http://www.f15ijp.com/2010/07/14/html-utf-8-encoding/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 13:10:23 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP5]]></category>
		<category><![CDATA[charset]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=551</guid>
		<description><![CDATA[To get a html page to display UTF-8 encoded text correctly (without setting a default charset) simply add the following to the head of the html page. &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=UTF-8&#34; /&#62;]]></description>
			<content:encoded><![CDATA[<p>To get a html page to display UTF-8 encoded text correctly (without <a href="http://www.f15ijp.com/2010/01/14/apache2-changing-charset-using-htaccess/">setting a default charset</a>) simply add the following to the head of the html page.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2010/07/14/html-utf-8-encoding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

