<?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>ホームページ制作のディークラフト &#187; CSS関連</title>
	<atom:link href="http://d-craft.net/archives/category/tecnik/%e3%83%97%e3%83%ad%e3%82%b0%e3%83%a9%e3%83%a0%e3%82%bd%e3%83%bc%e3%82%b9%e3%81%ae%e3%83%84%e3%83%9c/feed" rel="self" type="application/rss+xml" />
	<link>http://d-craft.net</link>
	<description>ホームページの制作、運営管理、PHPスクリプトの販売</description>
	<lastBuildDate>Sat, 04 Feb 2012 14:55:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://d-craft.net/archives/category/tecnik/%e3%83%97%e3%83%ad%e3%82%b0%e3%83%a9%e3%83%a0%e3%82%bd%e3%83%bc%e3%82%b9%e3%81%ae%e3%83%84%e3%83%9c/feed" />
		<item>
		<title>写真に回り込むデザイン例1</title>
		<link>http://d-craft.net/css-sample/791.html</link>
		<comments>http://d-craft.net/css-sample/791.html#comments</comments>
		<pubDate>Tue, 08 Nov 2011 04:39:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS関連]]></category>

		<guid isPermaLink="false">http://d-craft.net/?p=791</guid>
		<description><![CDATA[
▼HTMLソース部

&#60;div id=&#34;items&#34;&#62;
&#60;div class=&#34;item&#34;&#62;
&#60;img src=&#34;photo.gif&#038;qu [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://d-craft.net/wp/wp-content/uploads/2011/11/css-sample01.png" alt="" title="css-sample01" width="636" height="122" class="alignnone size-full wp-image-792" /></p>
<p>▼HTMLソース部</p>
<pre class="brush: xml;">
&lt;div id=&quot;items&quot;&gt;
&lt;div class=&quot;item&quot;&gt;
&lt;img src=&quot;photo.gif&quot; width=&quot;80&quot; height=&quot;80&quot; alt=&quot;photo&quot; /&gt;
&lt;p class=&quot;item-title&quot;&gt;商品名が入ります。&lt;/p&gt;
&lt;p class=&quot;price&quot;&gt;5,000円（税込）&lt;/p&gt;
&lt;p&gt;商品の説明や、仕様など。ああああああああああああああああああああああああああああああああああああああああああ&lt;/p&gt;
&lt;/div&gt;&lt;!-- end.item --&gt;

&lt;div class=&quot;item&quot;&gt;
&lt;img src=&quot;photo.gif&quot; width=&quot;80&quot; height=&quot;80&quot; alt=&quot;photo&quot; /&gt;
&lt;p class=&quot;item-title&quot;&gt;商品名が入ります。&lt;/p&gt;
&lt;p class=&quot;price&quot;&gt;5,000円（税込）&lt;/p&gt;
&lt;p&gt;商品の説明や、仕様など。ああああああああああああああああああああああああああああああああああああああああああ&lt;/p&gt;
&lt;/div&gt;&lt;!-- end.item --&gt;
&lt;/div&gt;&lt;!-- end.items --&gt;
</pre>
<p>▼CSSソース部</p>
<pre class="brush: css;">
.item p {
	margin: 0;
	padding: 0;
	font-size: 12px;
	line-height: 1.4;
}
.item {
	padding: 5px;
	float: left;
	border: 1px solid #AAA;
	width: 300px;
	margin-right: 5px;
}
.item img {
	float: left;
	margin: 0 10px 10px 0;
}
p.item-title {

}
p.price {
	text-align: right;
	color: #FF0000;
	font-weight: bold;
}
#items {
	zoom: 100%;
}
#items:after {
    content: &quot;&quot;;
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://d-craft.net/css-sample/791.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://d-craft.net/css-sample/791.html" />
	</item>
		<item>
		<title>CSSのafter疑似要素で回り込みを解除するコード</title>
		<link>http://d-craft.net/css-sample/789.html</link>
		<comments>http://d-craft.net/css-sample/789.html#comments</comments>
		<pubDate>Tue, 08 Nov 2011 03:19:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS関連]]></category>

		<guid isPermaLink="false">http://d-craft.net/?p=789</guid>
		<description><![CDATA[回り込みを解除したい要素に、以下のコードを追加します。

.box {
	zoom: 100%;
}
.box:after {
    content: &#34;&#34;;
    clear: both;
   [...]]]></description>
			<content:encoded><![CDATA[<p>回り込みを解除したい要素に、以下のコードを追加します。</p>
<pre class="brush: css;">
.box {
	zoom: 100%;
}
.box:after {
    content: &quot;&quot;;
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://d-craft.net/css-sample/789.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://d-craft.net/css-sample/789.html" />
	</item>
		<item>
		<title>コピペで出来るCSS3で見出しスタイリング</title>
		<link>http://d-craft.net/css-sample/714.html</link>
		<comments>http://d-craft.net/css-sample/714.html#comments</comments>
		<pubDate>Thu, 20 Oct 2011 00:39:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS関連]]></category>

		<guid isPermaLink="false">http://d-craft.net/?p=714</guid>
		<description><![CDATA[見出し(h1〜h6)のスタイリングを、CSS3を使って角丸や影を表現するなどの方法が紹介されています。

◎CSS3グラデーションを生成するサイト

]]></description>
			<content:encoded><![CDATA[<p>見出し(h1〜h6)のスタイリングを、CSS3を使って角丸や影を表現するなどの方法が紹介されています。</p>
<p><a href="http://blog.3streamer.net/html5-css3/css3-styling-231/" target="_blank"><img src="http://d-craft.net/wp/wp-content/uploads/2011/10/1319071087268.jpg" alt="" title="1319071087268" width="350" height="250" class="alignnone size-full wp-image-715" /></a></p>
<p>◎CSS3グラデーションを生成するサイト<br />
<a href="http://gradients.glrzad.com/"><img src="http://d-craft.net/wp/wp-content/uploads/2011/10/1319071285280.jpg" alt="" title="1319071285280" width="350" height="250" class="alignnone size-full wp-image-718" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://d-craft.net/css-sample/714.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://d-craft.net/css-sample/714.html" />
	</item>
		<item>
		<title>clearfixのまとめ</title>
		<link>http://d-craft.net/css-sample/696.html</link>
		<comments>http://d-craft.net/css-sample/696.html#comments</comments>
		<pubDate>Tue, 18 Oct 2011 01:03:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS関連]]></category>

		<guid isPermaLink="false">http://d-craft.net/?p=696</guid>
		<description><![CDATA[フロートをクリアする手法は色々ありますが、よく使われる「clearfix」についてまとめてみた。
以下のコードをcssに追加します。

.clearfix:after {
    content: &#34;.&#038;quo [...]]]></description>
			<content:encoded><![CDATA[<p>フロートをクリアする手法は色々ありますが、よく使われる「clearfix」についてまとめてみた。<br />
以下のコードをcssに追加します。</p>
<pre class="brush: css;">
.clearfix:after {
    content: &quot;.&quot;;
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
</pre>
]]></content:encoded>
			<wfw:commentRss>http://d-craft.net/css-sample/696.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://d-craft.net/css-sample/696.html" />
	</item>
		<item>
		<title>使われていないCSS設定があるか教えてくれる『Unused CSS』</title>
		<link>http://d-craft.net/css-sample/676.html</link>
		<comments>http://d-craft.net/css-sample/676.html#comments</comments>
		<pubDate>Fri, 23 Sep 2011 00:58:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS関連]]></category>

		<guid isPermaLink="false">http://d-craft.net/?p=676</guid>
		<description><![CDATA[使われていないCSS設定って、結構あるんです。
修正を加えていくと、記述がどんどん増えて、余計な設定が残っていて。
簡単に整理できないのかなあ？って思っていたところ、こんなサービスを見つけました。
Unused CSS
 [...]]]></description>
			<content:encoded><![CDATA[<p>使われていないCSS設定って、結構あるんです。<br />
修正を加えていくと、記述がどんどん増えて、余計な設定が残っていて。<br />
簡単に整理できないのかなあ？って思っていたところ、こんなサービスを見つけました。</p>
<p>Unused CSS<br />
<a href="http://unused-css.com/">http://unused-css.com/</a><br />
使われているCSS設定を教えてくれるツール。</p>
]]></content:encoded>
			<wfw:commentRss>http://d-craft.net/css-sample/676.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://d-craft.net/css-sample/676.html" />
	</item>
		<item>
		<title>CSSだけで画像のリサイズを処理</title>
		<link>http://d-craft.net/css-sample/654.html</link>
		<comments>http://d-craft.net/css-sample/654.html#comments</comments>
		<pubDate>Sat, 10 Sep 2011 01:24:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS関連]]></category>

		<guid isPermaLink="false">http://d-craft.net/?p=654</guid>
		<description><![CDATA[
.photo img {
	max-width: 300px;
	max-height: 450px;
}
* html body .photo img {
	width:expression(this.width &#62;= this.width ? &#34;300px&#34; : &#34;auto&#34;);
	height:expression(this.height &#62;= this.height ? &#34;450px&#34; : &#34;auto&#34;);
}
img {
	-ms-interpolation-mode: bicubic;
}

]]></description>
			<content:encoded><![CDATA[<pre class="brush: css;">
.photo img {
	max-width: 300px;
	max-height: 450px;
}
* html body .photo img {
	width:expression(this.width &gt;= this.width ? &quot;300px&quot; : &quot;auto&quot;);
	height:expression(this.height &gt;= this.height ? &quot;450px&quot; : &quot;auto&quot;);
}
img {
	-ms-interpolation-mode: bicubic;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://d-craft.net/css-sample/654.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://d-craft.net/css-sample/654.html" />
	</item>
		<item>
		<title>回り込みを解除する</title>
		<link>http://d-craft.net/css-sample/652.html</link>
		<comments>http://d-craft.net/css-sample/652.html#comments</comments>
		<pubDate>Fri, 09 Sep 2011 02:12:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS関連]]></category>

		<guid isPermaLink="false">http://d-craft.net/?p=652</guid>
		<description><![CDATA[
.clearfix {
    display: block;
}
/* Clear Fix */
.clearfix:after {
	content: &#34;.&#34;;
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

/*
.clearfix {
	display: inline-block;
}
*/
html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}

]]></description>
			<content:encoded><![CDATA[<pre class="brush: css;">
.clearfix {
    display: block;
}
/* Clear Fix */
.clearfix:after {
	content: &quot;.&quot;;
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

/*
.clearfix {
	display: inline-block;
}
*/
html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://d-craft.net/css-sample/652.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://d-craft.net/css-sample/652.html" />
	</item>
		<item>
		<title>Instant CSS Code</title>
		<link>http://d-craft.net/css-sample/373.html</link>
		<comments>http://d-craft.net/css-sample/373.html#comments</comments>
		<pubDate>Fri, 10 Sep 2010 05:55:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS関連]]></category>

		<guid isPermaLink="false">http://d-craft.net/?p=373</guid>
		<description><![CDATA[ウェブプロジェクトに必要なファイルを瞬時に作ってくれる。

⇒ http://instantcsscode.com/
]]></description>
			<content:encoded><![CDATA[<p>ウェブプロジェクトに必要なファイルを瞬時に作ってくれる。</p>
<p><a href="http://instantcsscode.com/"><img title="Now Capturing..." src="http://capture.heartrails.com/200x200/cool?http://instantcsscode.com/" alt="http://instantcsscode.com/" width="200" height="200" /></a></p>
<p>⇒ <a href="http://instantcsscode.com/">http://instantcsscode.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://d-craft.net/css-sample/373.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://d-craft.net/css-sample/373.html" />
	</item>
	</channel>
</rss>

