<?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>macaroni-works notes&#187; HTML</title>
	<atom:link href="http://blog.macaroniworks.net/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.macaroniworks.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 16 Feb 2011 07:27:11 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>HTML5 footerタグだってさ</title>
		<link>http://blog.macaroniworks.net/2010/09/html5-footer%e3%82%bf%e3%82%b0%e3%81%a0%e3%81%a3%e3%81%a6%e3%81%95/</link>
		<comments>http://blog.macaroniworks.net/2010/09/html5-footer%e3%82%bf%e3%82%b0%e3%81%a0%e3%81%a3%e3%81%a6%e3%81%95/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 03:50:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1418</guid>
		<description><![CDATA[HTML5といえば、いままでaudioだとかvideoとかcanvasとかしか 関係ないかなって思ってました。 navi,article,section,footer は近い未来に使うことがでてきそうです。 とはいえ、sectionが使われるようになるって言われて どのくらい経つのでしょうかね。 さてfooterタグに属性　dir(direction)というのがあって 値は ltr：左から右へ rtl：右から左へ とあります。 left to right　と　right to left なのでしょうか。 わかりやすいような、わかりにくいような。 text-alignみたいなものかしら？]]></description>
			<content:encoded><![CDATA[<p>HTML5といえば、いままでaudioだとかvideoとかcanvasとかしか<br />
関係ないかなって思ってました。</p>
<p>navi,article,section,footer<br />
は近い未来に使うことがでてきそうです。</p>
<p>とはいえ、sectionが使われるようになるって言われて<br />
どのくらい経つのでしょうかね。</p>
<p>さてfooterタグに属性　dir(direction)というのがあって<br />
値は<br />
<strong>ltr：左から右へ<br />
rtl：右から左へ </strong><br />
とあります。</p>
<p>left to right　と　right to left<br />
なのでしょうか。<br />
わかりやすいような、わかりにくいような。<br />
text-alignみたいなものかしら？</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2010/09/html5-footer%e3%82%bf%e3%82%b0%e3%81%a0%e3%81%a3%e3%81%a6%e3%81%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML CSS イメージ要素の隙間について</title>
		<link>http://blog.macaroniworks.net/2010/08/html-css-%e3%82%a4%e3%83%a1%e3%83%bc%e3%82%b8%e8%a6%81%e7%b4%a0%e3%81%ae%e9%9a%99%e9%96%93%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/</link>
		<comments>http://blog.macaroniworks.net/2010/08/html-css-%e3%82%a4%e3%83%a1%e3%83%bc%e3%82%b8%e8%a6%81%e7%b4%a0%e3%81%ae%e9%9a%99%e9%96%93%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 04:45:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[隙間]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1377</guid>
		<description><![CDATA[イメージ要素の隙間についてはいつも #sample img { display:block; } として回避していましたが、 #saple img { vertical-align:bottom; height:100px; } とするやり方もあるようです。 heightは無理にいれなくてもよさそうです。 imgを強引にblock要素にするよりは素直っぽいです。 これからはvertical-align:bottom;を使っていきます。 勉強になりました。]]></description>
			<content:encoded><![CDATA[<p>イメージ要素の隙間についてはいつも</p>
<pre class="brush:css">
#sample img {
 display:block;
}
</pre>
<p>として回避していましたが、</p>
<pre class="brush:css">
#saple img {
  vertical-align:bottom;
  height:100px;
}
</pre>
<p>とするやり方もあるようです。</p>
<p>heightは無理にいれなくてもよさそうです。<br />
imgを強引にblock要素にするよりは素直っぽいです。</p>
<p>これからはvertical-align:bottom;を使っていきます。</p>
<p>勉強になりました。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2010/08/html-css-%e3%82%a4%e3%83%a1%e3%83%bc%e3%82%b8%e8%a6%81%e7%b4%a0%e3%81%ae%e9%9a%99%e9%96%93%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 oggのエンコーダー</title>
		<link>http://blog.macaroniworks.net/2010/06/html5-ogg%e3%81%ae%e3%82%a8%e3%83%b3%e3%82%b3%e3%83%bc%e3%83%80%e3%83%bc/</link>
		<comments>http://blog.macaroniworks.net/2010/06/html5-ogg%e3%81%ae%e3%82%a8%e3%83%b3%e3%82%b3%e3%83%bc%e3%83%80%e3%83%bc/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 05:47:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[ogg]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1323</guid>
		<description><![CDATA[HTML5のvideoで、oggのエンコードもしなきゃだなあ、統一してくれないかなと思ってますが やはり、oggのエンコーダーをいれておかねばと思い入れました。 エンコーダーとはいえQuickTimeのコンポーネントです。 http://www.vorbis.com/ ここで「XiphQT」をダウンロードして、/ライブラリ/QuickTime　に入れました。 これで動画のエンコードもできるようです。]]></description>
			<content:encoded><![CDATA[<p>HTML5のvideoで、oggのエンコードもしなきゃだなあ、統一してくれないかなと思ってますが<br />
やはり、oggのエンコーダーをいれておかねばと思い入れました。<br />
エンコーダーとはいえQuickTimeのコンポーネントです。</p>
<p><a href="http://www.vorbis.com/">http://www.vorbis.com/</a></p>
<p>ここで「XiphQT」をダウンロードして、/ライブラリ/QuickTime　に入れました。<br />
これで動画のエンコードもできるようです。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2010/06/html5-ogg%e3%81%ae%e3%82%a8%e3%83%b3%e3%82%b3%e3%83%bc%e3%83%80%e3%83%bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML　ページ全体のファイル容量を確認したい</title>
		<link>http://blog.macaroniworks.net/2010/05/html%e3%80%80%e3%83%9a%e3%83%bc%e3%82%b8%e5%85%a8%e4%bd%93%e3%81%ae%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e5%ae%b9%e9%87%8f%e3%82%92%e7%a2%ba%e8%aa%8d%e3%81%97%e3%81%9f%e3%81%84/</link>
		<comments>http://blog.macaroniworks.net/2010/05/html%e3%80%80%e3%83%9a%e3%83%bc%e3%82%b8%e5%85%a8%e4%bd%93%e3%81%ae%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e5%ae%b9%e9%87%8f%e3%82%92%e7%a2%ba%e8%aa%8d%e3%81%97%e3%81%9f%e3%81%84/#comments</comments>
		<pubDate>Wed, 12 May 2010 03:04:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1298</guid>
		<description><![CDATA[イメージやら、CSSやら、JSやら読み込んでいるモノ全部含めて ページ全体のファイル容量を確認したいっておもってましたが こんなサイト見つけましたので貼っておきます。 Site24x7 &#8211; Online tool to analyze webpage and its objects http://site24x7.com/web-page-analyzer.html 他にもありそうです。]]></description>
			<content:encoded><![CDATA[<p>イメージやら、CSSやら、JSやら読み込んでいるモノ全部含めて<br />
ページ全体のファイル容量を確認したいっておもってましたが<br />
こんなサイト見つけましたので貼っておきます。</p>
<p>Site24x7 &#8211; Online tool to analyze webpage and its objects<br />
<a href="http://site24x7.com/web-page-analyzer.html">http://site24x7.com/web-page-analyzer.html</a></p>
<p>他にもありそうです。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2010/05/html%e3%80%80%e3%83%9a%e3%83%bc%e3%82%b8%e5%85%a8%e4%bd%93%e3%81%ae%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e5%ae%b9%e9%87%8f%e3%82%92%e7%a2%ba%e8%aa%8d%e3%81%97%e3%81%9f%e3%81%84/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 canvas一歩め</title>
		<link>http://blog.macaroniworks.net/2010/04/html5-canvas%e4%b8%80%e6%ad%a9%e3%82%81/</link>
		<comments>http://blog.macaroniworks.net/2010/04/html5-canvas%e4%b8%80%e6%ad%a9%e3%82%81/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 16:25:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[canvas]]></category>
		<category><![CDATA[fillRect]]></category>
		<category><![CDATA[getContext]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1277</guid>
		<description><![CDATA[ちょっとhtml5ってみました。 初めてなのでdoctypeやmetaもあわせていってみます。 ローカル環境でうごかせるようにjQueryはダウンロードしてきてます。 head内にスクリプトを書くとcanvasタグがねえよっていわれるので jQuery.ready()でDOMツリー完了後に書いてます（onloadつかえばいいのに)。 それだけのためのjQueryです、今回は。 &#60;!doctype html> &#60;html> &#60;head> &#60;meta charset="utf-8"> &#60;title>fillRect &#60;script type = "text/javascript" src = "../../jQuery/jquery-1.4.2.min.js"> &#60;script type = "text/javascript" src = "fillRect.js"> &#60;/head> &#60;body> test &#60;/body> &#60;/html> fillRect.js $(function(){ var canvas=document.getElementById("canvas1"); var context=canvas.getContext("2d"); context.fillRect(0,0,150,100); });]]></description>
			<content:encoded><![CDATA[<p>ちょっとhtml5ってみました。<br />
初めてなのでdoctypeやmetaもあわせていってみます。<br />
ローカル環境でうごかせるようにjQueryはダウンロードしてきてます。<br />
head内にスクリプトを書くとcanvasタグがねえよっていわれるので<br />
jQuery.ready()でDOMツリー完了後に書いてます（onloadつかえばいいのに)。<br />
それだけのためのjQueryです、今回は。</p>
<pre class="brush:php">
&lt;!doctype html>
&lt;html>
&lt;head>
&lt;meta  charset="utf-8"></meta>
&lt;title>fillRect</title>
&lt;script type = "text/javascript" src = "../../jQuery/jquery-1.4.2.min.js"></script>
&lt;script type = "text/javascript" src = "fillRect.js"></script>
&lt;/head>
&lt;body>
<canvas id="canvas1" width="300" height="200" >test</canvas>
&lt;/body>
&lt;/html>
</pre>
<p>fillRect.js</p>
<pre class="brush:js">
$(function(){
	var canvas=document.getElementById("canvas1");
	var context=canvas.getContext("2d");
	context.fillRect(0,0,150,100);
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2010/04/html5-canvas%e4%b8%80%e6%ad%a9%e3%82%81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5　やっぱりすごいねこれ。</title>
		<link>http://blog.macaroniworks.net/2010/04/html5%e3%80%80%e3%82%84%e3%81%a3%e3%81%b1%e3%82%8a%e3%81%99%e3%81%94%e3%81%84%e3%81%ad%e3%81%93%e3%82%8c%e3%80%82/</link>
		<comments>http://blog.macaroniworks.net/2010/04/html5%e3%80%80%e3%82%84%e3%81%a3%e3%81%b1%e3%82%8a%e3%81%99%e3%81%94%e3%81%84%e3%81%ad%e3%81%93%e3%82%8c%e3%80%82/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 03:03:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1271</guid>
		<description><![CDATA[オープンな規格なのがいいですね。 すでに色んなサイトで説明やチュートリアルがあります。 いままでjsを使えば出来たようなことができるだけだとつまんないんですが、html5はそうでもないみたいです。 Web Databaseってのが気になりました。 感想だけ！]]></description>
			<content:encoded><![CDATA[<p>オープンな規格なのがいいですね。</p>
<p>すでに色んなサイトで説明やチュートリアルがあります。<br />
いままでjsを使えば出来たようなことができるだけだとつまんないんですが、html5はそうでもないみたいです。</p>
<p>Web Databaseってのが気になりました。</p>
<p>感想だけ！</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2010/04/html5%e3%80%80%e3%82%84%e3%81%a3%e3%81%b1%e3%82%8a%e3%81%99%e3%81%94%e3%81%84%e3%81%ad%e3%81%93%e3%82%8c%e3%80%82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML　コーディング高速化</title>
		<link>http://blog.macaroniworks.net/2010/02/html%e3%80%80%e3%82%b3%e3%83%bc%e3%83%87%e3%82%a3%e3%83%b3%e3%82%b0%e9%ab%98%e9%80%9f%e5%8c%96/</link>
		<comments>http://blog.macaroniworks.net/2010/02/html%e3%80%80%e3%82%b3%e3%83%bc%e3%83%87%e3%82%a3%e3%83%b3%e3%82%b0%e9%ab%98%e9%80%9f%e5%8c%96/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 10:31:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1168</guid>
		<description><![CDATA[普段何気にやっている作業でも、効率化の為色々と考えなければいけませんね。 当然ですが。 http://h2o-space.com/blog/1929]]></description>
			<content:encoded><![CDATA[<p>普段何気にやっている作業でも、効率化の為色々と考えなければいけませんね。<br />
当然ですが。</p>
<p><a href="http://h2o-space.com/blog/1929">http://h2o-space.com/blog/1929</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2010/02/html%e3%80%80%e3%82%b3%e3%83%bc%e3%83%87%e3%82%a3%e3%83%b3%e3%82%b0%e9%ab%98%e9%80%9f%e5%8c%96/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>htmlのmetaでキャッシュ制御</title>
		<link>http://blog.macaroniworks.net/2010/01/html%e3%81%aemeta%e3%81%a7%e3%82%ad%e3%83%a3%e3%83%83%e3%82%b7%e3%83%a5%e5%88%b6%e5%be%a1/</link>
		<comments>http://blog.macaroniworks.net/2010/01/html%e3%81%aemeta%e3%81%a7%e3%82%ad%e3%83%a3%e3%83%83%e3%82%b7%e3%83%a5%e5%88%b6%e5%be%a1/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 11:39:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[httpヘッダ]]></category>
		<category><![CDATA[pragma]]></category>
		<category><![CDATA[キャッシュ]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1089</guid>
		<description><![CDATA[metaでキャッシュ制御を行う場合は、以下の記述をするらしいです。 &#60;meta http-equiv="Pragma" content="no-cache"> &#60;meta http-equiv="Cache-Control" content="no-cache"> &#60;meta http-equiv="Expires" content="Thu, 01 Dec 1994 16:00:00 GMT"> httpヘッダで行う場合は Pragma: no-cache Cache-Control: no-cache Expires: Thu, 01 Dec 1994 16:00:00 GMT これを header()でヘッダ出力するカンジでしょうか。 pragmaってなんだろ？？]]></description>
			<content:encoded><![CDATA[<p>metaでキャッシュ制御を行う場合は、以下の記述をするらしいです。</p>
<pre class="brush:php">
&lt;meta http-equiv="Pragma" content="no-cache">
&lt;meta http-equiv="Cache-Control" content="no-cache">
&lt;meta http-equiv="Expires" content="Thu, 01 Dec 1994 16:00:00 GMT">
</pre>
<p>httpヘッダで行う場合は</p>
<pre class="brush:php">
Pragma: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
</pre>
<p>これを header()でヘッダ出力するカンジでしょうか。</p>
<p>pragmaってなんだろ？？</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2010/01/html%e3%81%aemeta%e3%81%a7%e3%82%ad%e3%83%a3%e3%83%83%e3%82%b7%e3%83%a5%e5%88%b6%e5%be%a1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>html フォームから画像をアップするときに</title>
		<link>http://blog.macaroniworks.net/2009/11/html-%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0%e3%81%8b%e3%82%89%e7%94%bb%e5%83%8f%e3%82%92%e3%82%a2%e3%83%83%e3%83%97%e3%81%99%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%ab/</link>
		<comments>http://blog.macaroniworks.net/2009/11/html-%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0%e3%81%8b%e3%82%89%e7%94%bb%e5%83%8f%e3%82%92%e3%82%a2%e3%83%83%e3%83%97%e3%81%99%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%ab/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 05:45:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[enctype]]></category>
		<category><![CDATA[multipart]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=1022</guid>
		<description><![CDATA[フォームから画像をアップするときにいつも忘れがちな属性を メモっておきます。]]></description>
			<content:encoded><![CDATA[<p>フォームから画像をアップするときにいつも忘れがちな属性を<br />
メモっておきます。</p>
<pre class="brush:js">
<form action="test.php" method="post" enctype="multipart/form-data" >
<INPUT TYPE="hidden" NAME="MAX_FILE_SIZE" VALUE="100000">
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2009/11/html-%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0%e3%81%8b%e3%82%89%e7%94%bb%e5%83%8f%e3%82%92%e3%82%a2%e3%83%83%e3%83%97%e3%81%99%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%ab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

