<?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; css</title>
	<atom:link href="http://www.shiteki.info/web/tag/css/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/tag/css/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>CSSの軽量化に「CSS Compressor」</title>
		<link>http://www.shiteki.info/web/tool/127.html</link>
		<comments>http://www.shiteki.info/web/tool/127.html#comments</comments>
		<pubDate>Wed, 09 Dec 2009 08:21:23 +0000</pubDate>
		<dc:creator>shiteki</dc:creator>
				<category><![CDATA[ツール]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.shiteki.info/web/?p=127</guid>
		<description><![CDATA[<a href="http://www.shiteki.info/web/tool/127.html"><img align="left" hspace="5" width="150" src="http://dl.dropbox.com/u/20040494/web/files/2009/12/csscompress01.gif" class="alignleft wp-post-image tfe" alt="csscompress01" title="" /></a>使用しているCSSを軽量化しようと探したて見つけたのが、無料のWEBサービス「CSS Compressor」。 「Compression Mode」を5つから選択し、「Compression Options」にチェックを [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://dl.dropbox.com/u/20040494/web/files/2009/12/csscompress01.gif" alt="csscompress01" width="450" height="176" class="alignnone size-full wp-image-128" /></p>
<p>使用しているCSSを軽量化しようと探したて見つけたのが、無料のWEBサービス「CSS Compressor」。<br />
「Compression Mode」を5つから選択し、「Compression Options」にチェックをお好みで入れて、「CSS Input」に圧縮したいCSSをペーストしたら最後に「Compress」ボタンを押すだけで、CSSを圧縮してくれる。<br />
<span id="more-127"></span><br />
CSSにもよるが僕の場合約30％のダイエットに成功した！<br />
あとは実際の表示をチェックするだけだが、ここでうまく表示できないようだったらコードを見るのではなく、圧縮モードやオプションを変更してみるといいのではないだろうか。</p>
<p>コードとしては見づらくなるので、元のファイルは残しておいて修正はそのファイルで行い、修正した後に「CSS Compressor」で圧縮という流れをオススメします。</p>
<p>→<a href="http://www.csscompressor.com/" target="blank">CSS Compressor</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shiteki.info/web/tool/127.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.shiteki.info/web/tool/127.html" />
	</item>
		<item>
		<title>IE/Firefox/Safariで見た目を比べながらWebサイトを開発できる「Pirka&#039;r」</title>
		<link>http://www.shiteki.info/web/tool/117.html</link>
		<comments>http://www.shiteki.info/web/tool/117.html#comments</comments>
		<pubDate>Tue, 06 Oct 2009 00:18:17 +0000</pubDate>
		<dc:creator>shiteki</dc:creator>
				<category><![CDATA[ツール]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox.IE]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.shiteki.info/web/?p=117</guid>
		<description><![CDATA[<a href="http://www.shiteki.info/web/tool/117.html"><img align="left" hspace="5" width="150" src="http://dl.dropbox.com/u/20040494/web/files/2009/10/prrkar.jpg" class="alignleft wp-post-image tfe" alt="prrkar" title="" /></a>「Pirka&#8217;r（ピリカル）」はさまざまなWebブラウザーで共通の見栄え・動作を実現する“クロスブラウザ”対応Webサイトの開発を支援するソフトだ。 主な仕様 ・CSSがWeb標準に準拠して記述されているかチ [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://dl.dropbox.com/u/20040494/web/files/2009/10/prrkar.jpg" alt="prrkar" width="480" height="205" class="alignnone size-full wp-image-118" /></p>
<p>「Pirka&#8217;r（ピリカル）」はさまざまなWebブラウザーで共通の見栄え・動作を実現する“クロスブラウザ”対応Webサイトの開発を支援するソフトだ。</p>
<h3>主な仕様</h3>
<p>・CSSがWeb標準に準拠して記述されているかチェックすることができます。<br />
・HTML/CSS/JavaScriptにブラウザに依存する記述がないかチェックすることができます。<br />
　(このチェックを利用するにはサーバアプリケーションが必要です。)<br />
・一つのページを複数のブラウザで同時に表示し、各ブラウザを起動して確認する面倒な作業から解放します。<br />
　（利用OSごとに表示可能ブラウザは異なります）<br />
・多機能エディタで編集・保存した内容を自動でマルチブラウザビューに反映し、各ブラウザをリロードする作業から開放します。<br />
・HTML/CSS/JavaScriptのエディタです。「コード補完」、「シンタックスハイライト」、「構文チェック」などの便利な機能があります。<br />
・指定URLのサイトのコンテンツを収集します。階層指定も行えます。<br />
<span id="more-117"></span><br />
＜ダウンロード＞<br />
→<a href="http://pirkar.ashikunep.org/" target="blank">オフィシャルサイト</a></p>
<p>＜ネタ元＞<br />
→<a href="http://www.forest.impress.co.jp/docs/news/20091001_318770.html" target="blank">窓の杜</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shiteki.info/web/tool/117.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.shiteki.info/web/tool/117.html" />
	</item>
		<item>
		<title>実践 Web Standards Design ~Web標準の基本とCSSレイアウト&amp;Tips</title>
		<link>http://www.shiteki.info/web/book/69.html</link>
		<comments>http://www.shiteki.info/web/book/69.html#comments</comments>
		<pubDate>Fri, 05 Jun 2009 02:37:43 +0000</pubDate>
		<dc:creator>shiteki</dc:creator>
				<category><![CDATA[書籍紹介]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.shiteki.info/web/?p=69</guid>
		<description><![CDATA[<a href="http://www.shiteki.info/web/book/69.html"><img align="left" hspace="5" width="150" src="http://ecx.images-amazon.com/images/I/41jm9hagpJL._SL160_.jpg" class="alignleft wp-post-image tfe" alt="" title="" /></a>実践 Web Standards Design ~Web標準の基本とCSSレイアウト&#38;Tips~ 価格 難しそうだけどわかりやすい前半部分は少々お堅い文章というか内容。読み続けるのに苦労しそうな第一印象だ。しかし [...]]]></description>
			<content:encoded><![CDATA[<table border="0" width="450" cellpadding="1" cellspacing="0">
<tr>
<td style="background-color:#F5F5F5">
<table border="0" cellpadding="2" cellspacing="0" width="100%">
<tr>
<td align="CENTER" style="font-size : 13px;color : #000000;background-color:#FFFFFF">
<div><a href="http://www.amazon.co.jp/exec/obidos/ASIN/4774136840/shiteki-22/ref=nosim">実践 Web Standards Design ~Web標準の基本とCSSレイアウト&amp;Tips~</a></div>
<div><a href="http://www.amazon.co.jp/exec/obidos/ASIN/4774136840/shiteki-22/ref=nosim"><img src="http://ecx.images-amazon.com/images/I/41jm9hagpJL._SL160_.jpg" border="0" /></a></div>
<div>価格<img src="http://amanatu.com/p/?a=4774136840" border="0" /></div>
<p><img height="12" src="http://images-jp.amazon.com/images/G/09/x-locale/common/customer-reviews/stars-5-0.gif" width="64" border="0" />
<div align="left"><b>難しそうだけどわかりやすい</b><br />前半部分は少々お堅い文章というか内容。読み続けるのに苦労しそうな第一印象だ。しかし、中盤あたりからは非常に理解しやすい流れとなる。特にソースのコメントや途中のコラムに気の利いた配慮が感じられ、過去に読んだCSS本の中では、もっとも良い本だと感じた。初心者にはちょっとキツイかもしれませんがオススメです。&#8230;</div>
</td>
</tr>
<tr>
<td align="center" style="background-color:#FFFFFF"><a href="http://amanatu.com/"><img src="http://amanatu.com/images/adassist50x8.gif" width="50" height="8" alt="あまなつ" border="0" /></a><a href="http://shop.amanatu.com/archives/asin/4774136840.html?id=shiteki-22"><img src="http://amanatu.com/images/s8x8.gif" width="8" height="8" alt="Shopあまなつで見る" border="0" /></a><a href="http://amanatu.com/adassist/4774136840?a2450&amp;a314&amp;a4%23000000&amp;a5%23F5F5F5&amp;a6%23FFFFFF&amp;a913&amp;a0%23215670&amp;b4200&amp;b52&amp;b61&amp;b72&amp;c30&amp;c4center&amp;c50&amp;c60&amp;c01&amp;d20"><img src="http://amanatu.com/images/b8x8.gif" width="8" height="8" alt="同じレイアウトで作成" border="0" /></a></td>
</tr>
</table>
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.shiteki.info/web/book/69.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.shiteki.info/web/book/69.html" />
	</item>
	</channel>
</rss>

