<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>WEB制作のネタ帳（for 初心者） &#187; HTML</title>
	<atom:link href="http://www.shiteki.info/web/category/html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shiteki.info/web</link>
	<description>ホームページを作る上で役立つであろう情報</description>
	<lastBuildDate>Fri, 07 Jan 2011 10:18:18 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.shiteki.info/web/category/html/feed" />
		<item>
		<title>CSSで見出しの頭に画像を設定する方法</title>
		<link>http://www.shiteki.info/web/html/167.html</link>
		<comments>http://www.shiteki.info/web/html/167.html#comments</comments>
		<pubDate>Wed, 17 Nov 2010 05:58:46 +0000</pubDate>
		<dc:creator>shiteki</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.shiteki.info/web/?p=167</guid>
		<description><![CDATA[<a href="http://www.shiteki.info/web/html/167.html"><img align="left" hspace="5" width="150" height="150" src="http://www.shiteki.info/web/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>今更ですが、CSSをかじろうと思いまして、やりたいことを調べた結果を備忘録として残します。 今回やりたいのは「見出しの先頭に画像の設定する」ことです。 こんなかんじ 具体的にはまず以下のようにCSSに記載します。 [cc [...]]]></description>
			<content:encoded><![CDATA[<p>今更ですが、CSSをかじろうと思いまして、やりたいことを調べた結果を備忘録として残します。</p>
<p>今回やりたいのは「見出しの先頭に画像の設定する」ことです。</p>
<p id="xxx">こんなかんじ</p>
<p>具体的にはまず以下のようにCSSに記載します。<br />
<span id="more-167"></span><br />
[cc lang="css"]#xxx {<br />
    background-image: url( xxx.gif );/*画像URL*/<br />
    background-repeat: no-repeat;/*繰り返ししない*/<br />
    background-position: left center;/*背景画像を「左端の（上下の）中央」に表示*/<br />
    padding-left: 62px;/*見出しの文字列の開始位置を62pxずらす*/<br />
}[/cc]</p>
<p>それから<strong>id=&#8221;xxx&#8221;</strong>を表示したいタグに入れるだけです。<br />
上の例だと<br />
[cc lang="php"]
<p id="xxx">こんなかんじ</p>
<p>[/cc]</p>
<p>間違ってたら教えてください。</p>
<p>＜参考＞<br />
→<a href="http://allabout.co.jp/gm/gc/23828/3/" target="blank">CSSで見出しの頭に画像を加える(後編) &#8211; [ホームページ作成] All About</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shiteki.info/web/html/167.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.shiteki.info/web/html/167.html" />
	</item>
		<item>
		<title>超便利！「エクセルシートをHTMLテーブルに変換しちゃう君 」</title>
		<link>http://www.shiteki.info/web/html/39.html</link>
		<comments>http://www.shiteki.info/web/html/39.html#comments</comments>
		<pubDate>Wed, 21 Jan 2009 02:02:23 +0000</pubDate>
		<dc:creator>shiteki</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.shiteki.info/web/?p=39</guid>
		<description><![CDATA[<a href="http://www.shiteki.info/web/html/39.html"><img align="left" hspace="5" width="150" height="150" src="http://www.shiteki.info/web/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>エクセルデータからHTML Tableタグの表を作成してくれる「Tableizer」なんてものもありますが、これよりも便利なのが「エクセルシートをHTMLテーブルに変換しちゃう君 」です。 使い方を簡単にご紹介。 1.こ [...]]]></description>
			<content:encoded><![CDATA[<p>エクセルデータからHTML Tableタグの表を作成してくれる「Tableizer」なんてものもありますが、これよりも便利なのが「エクセルシートをHTMLテーブルに変換しちゃう君 」です。<br />
使い方を簡単にご紹介。<br />
<span id="more-39"></span></p>
<p>1.<a href="http://styleme.jp/tool/xls2html/" target="_blank">ここ</a>にアクセス<br />
2.html化したセルを選択してコピーして貼り付け<br />
3.各種設定をして「▼変換▼」をクリック<br />
4.下にコードが作成されるので、これを貼り付けるだけ</p>
<p>＜参考＞<br />
・<a href="http://web-marketing.zako.org/web-tools/henkankun--html-tables-from-excel.html" target="_blank">WEBマーケティング ブログ</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shiteki.info/web/html/39.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.shiteki.info/web/html/39.html" />
	</item>
	</channel>
</rss>

