<?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>たねっぱ！ &#187; コーディング</title>
	<atom:link href="https://taneppa.net/tag/%e3%82%b3%e3%83%bc%e3%83%87%e3%82%a3%e3%83%b3%e3%82%b0/feed/" rel="self" type="application/rss+xml" />
	<link>https://taneppa.net</link>
	<description>コツコツあつめるWeb作りのためのたね　たねっぱ！Web系情報ブログ　Webのお役立ちネタ配信中！</description>
	<lastBuildDate>Tue, 09 May 2023 00:02:06 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>テーブルを横スクロールで表示する方法</title>
		<link>https://taneppa.net/table_responsive_scroll/</link>
		<comments>https://taneppa.net/table_responsive_scroll/#comments</comments>
		<pubDate>Tue, 09 May 2023 00:02:06 +0000</pubDate>
		<dc:creator>futappa_staff</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[コーディング]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=9336</guid>
		<description><![CDATA[レスポンシブやスマホ対応のときに使えるテクニック！テーブルを横スクロールで表示する方法を紹介します。]]></description>
				<content:encoded><![CDATA[




	<div id="Rurippa">


		<h3>目次</h3>
		<ul>
			<li><a href="#item00">はじめに</a></li>
			<li><a href="#item01">完成形</a></li>
			<li><a href="#item02">実装方法</a></li>
			<li><a href="#item10">最後に</a></li>
		</ul>



		<div id="item00" class="spaceCont"></div>
		<h2>はじめに</h2>
		<p>レスポンシブ対応するときに、スマホ用になおすのが難しいテーブルってありますよね？<br />そんなときに、横スクロールで表示してるところも多いのでその方法を紹介します。</p>






		<div id="item01" class="spaceCont"></div>
		<h2>完成形</h2>

		<h3>通常時</h3>
		<table>
			<tr>
				<th>見出し</th>
				<th>見出し</th>
				<th>見出し</th>
				<th>見出し</th>
			</tr>
			<tr>
				<td>内容</td>
				<td>内容</td>
				<td>内容</td>
				<td>内容</td>
			</tr>
			<tr>
				<td>内容</td>
				<td>内容</td>
				<td>内容</td>
				<td>内容</td>
			</tr>

		</table>


<h3>表示できる幅が300pxのとき。はみでた部分は横スクロール表示</h3>
		<p>※横スクロールできます</p>
		<div class="tableWrap">
			<table>
				<tr>
					<th>見出し</th>
					<th>見出し</th>
					<th>見出し</th>
					<th>見出し</th>
				</tr>
				<tr>
					<td>内容</td>
					<td>内容</td>
					<td>内容</td>
					<td>内容</td>
				</tr>
				<tr>
					<td>内容</td>
					<td>内容</td>
					<td>内容</td>
					<td>内容</td>
				</tr>

			</table>
		</div>




		<div id="item02" class="spaceCont"></div>
		<h2>実装方法</h2>


		<p>tableタグをdivで囲んでいます。そのdivに、「<strong>overflow: scroll;</strong>」をかけることで、枠からはみ出た部分をスクロール表示します。<br />その他注意点はソースコードのサンプルにコメントに入れてますので、確認してみてください(^^)</p>

		<h3>ソースコード（装飾部分のCSSは省略）</h3>

		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;tableWrap&quot;&gt;
			&lt;table&gt;
				&lt;tr&gt;
					&lt;th&gt;見出し&lt;/th&gt;
					&lt;th&gt;見出し&lt;/th&gt;
					&lt;th&gt;見出し&lt;/th&gt;
					&lt;th&gt;見出し&lt;/th&gt;
				&lt;/tr&gt;
				&lt;tr&gt;
					&lt;td&gt;内容&lt;/td&gt;
					&lt;td&gt;内容&lt;/td&gt;
					&lt;td&gt;内容&lt;/td&gt;
					&lt;td&gt;内容&lt;/td&gt;
				&lt;/tr&gt;
				&lt;tr&gt;
					&lt;td&gt;内容&lt;/td&gt;
					&lt;td&gt;内容&lt;/td&gt;
					&lt;td&gt;内容&lt;/td&gt;
					&lt;td&gt;内容&lt;/td&gt;
				&lt;/tr&gt;

			&lt;/table&gt;
		&lt;/div&gt;


		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.tableWrap{
			/* ▼枠からでた部分をスクロール表示する */
			overflow: scroll;
			width: 300px;
		}
		table{
			border-collapse: collapse;

			/* ▼スクロールがスムーズになる */
			-webkit-overflow-scrolling: touch;
		}

		th,
		td{
			width: 100px;

			/* ▼セルが100px以下にならないようにする */
			min-width: 100px;
		}
		</pre>





		<div id="item10" class="spaceCont"></div>
		<h2>最後に</h2>
		<p>いかがでしたか？スマホ用の表示方法も色々ありますが、状況に応じて 最適な実装方法は違うと思うので、選択肢の１つとして使ってみてください♪
		また、以前にこんな記事も書いているので、よければご覧ください。</p>
		<p>過去記事：<a href="https://taneppa.net/table_responsive/">一番かんたんなテーブルのレスポンシブ対応</a></p>






	</div>

	<style>
		#Rurippa .spaceCont {
			padding-top: 30px;
			margin-top: -30px;
		}

		#Rurippa .tableWrap {
			/*  ▼枠からでた部分をスクロール表示する  */
			overflow: scroll;
			width: 300px;
		}

		#Rurippa table {
			width: auto;
			border-collapse: collapse;


			/*  ▼スクロールがスムーズになる  */
			-webkit-overflow-scrolling: touch;
		}
		#Rurippa table th,
#Rurippa table td{
	width: 100px;
	min-width: 100px;
}



	</style>



]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/table_responsive_scroll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ホバーのときに画像を拡大する方法</title>
		<link>https://taneppa.net/hover_zoom/</link>
		<comments>https://taneppa.net/hover_zoom/#comments</comments>
		<pubDate>Wed, 17 Nov 2021 07:58:20 +0000</pubDate>
		<dc:creator>futappa_staff</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[コーディング]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=8556</guid>
		<description><![CDATA[ホバーしたらサムネイルが拡大するレイアウトの作り方を紹介します。よく見るレイアウトなので、ぜひやってみてください♪]]></description>
				<content:encoded><![CDATA[


	<div id="Rurippa">

		<h3>目次</h3>
		<ul>
			<li><a href="#item00">はじめに</a></li>
			<li><a href="#item01">実装方法について</a></li>
			<li><a href="#item10">まとめ</a></li>
		</ul>





		<div id="item00" class="spaceCont"></div>
		<h2>はじめに</h2>

		<p>よく見る<strong>ホバーしたらサムネイルが拡大するレイアウト</strong>を作ってみようと思います。CSSだけでできますので、１つずつ確認していきましょう。</p>
		<p>＜サンプル＞</p>
		<div class="sample02">
			<img src="https://placeimg.com/200/150/people" alt="">
		</div>



		<div id="item01" class="spaceCont"></div>

		<h2>実装方法について</h2>


		<h3>１、divの中に写真を配置します。</h3>
		<div class="sample00">
			<img src="https://placeimg.com/200/150/people" alt="">
		</div>

		<pre class="brush: xml; title: ; notranslate">
			&lt;div class=&quot;sample&quot;&gt;
				&lt;img src=&quot;https://placeimg.com/200/150/people&quot; alt=&quot;&quot;&gt;
			&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample{
			width: 200px;
			height: 150px;

			border: 3px solid #999;/* 装飾のため、なくてもOK */
		}
		</pre>



		<h3>２、ホバーしたときに拡大するようにする。</h3>
		<p>拡大するために、<strong>img:hover</strong>のところに、「<strong>transform: scale(1.2);</strong>」をつけます。さらに<strong>img</strong>に「<strong>transition:all 0.3s;</strong>」をつけることで、動きがスムーズになります。<br />ですが、このままでは枠（div）から画像がはみ出てしまいましたね‥！</p>
		<div class="sample01">
			<img src="https://placeimg.com/200/150/people" alt="">
		</div>

		<pre class="brush: xml; title: ; notranslate">
			&lt;div class=&quot;sample&quot;&gt;
				&lt;img src=&quot;https://placeimg.com/200/150/people&quot; alt=&quot;&quot;&gt;
			&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample{
			width: 200px;
			height: 150px;

			border: 3px solid #999;/* 装飾のため、なくてもOK */
		}

		.sample img{
			/* 拡大するのにかかる時間 */
			transition:all 0.3s;
		}

		.sample img:hover{
			/* ホバーしたら1.2倍サイズに拡大 */
			transform: scale(1.2);
		}
		</pre>





		<h3>３、はみ出た部分を非表示にする。</h3>

		<p>画像がはみ出ないように、divに対して「<strong>overflow: hidden;</strong>」を追加します。これで完成です！！</p>
		<div class="sample02">
			<img src="https://placeimg.com/200/150/people" alt="">
		</div>

		<pre class="brush: xml; title: ; notranslate">
			&lt;div class=&quot;sample&quot;&gt;
				&lt;img src=&quot;https://placeimg.com/200/150/people&quot; alt=&quot;&quot;&gt;
			&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample{
			/* 拡大してはみ出した部分を非表示にする */
			overflow: hidden;
			width: 200px;
			height: 150px;

			border: 3px solid #999;/* 装飾のため、なくてもOK */
		}

		.sample img{
			/* 拡大するのにかかる時間 */
			transition:all 0.3s;
		}

		.sample img:hover{
			/* ホバーしたら1.2倍サイズに拡大 */
			transform: scale(1.2);
		}
		</pre>




		<div id="item10" class="spaceCont"></div>
		<h2>まとめ</h2>
		<p>うまくできましたか？よく見るレイアウトなので、この記事で理解が深まったら幸いです♪</p>






	</div>

	<style>
		#Rurippa .spaceCont {
			padding-top: 30px;
			margin-top: -30px;
		}

		#Rurippa .sample00 {
			width: 200px;
			height: 150px;
			border: 3px solid #999;
		}



		#Rurippa .sample01 {
			width: 200px;
			height: 150px;
			border: 3px solid #999;
		}

		#Rurippa .sample01 img {
			/*   拡大するのにかかる時間 */
			transition: all 0.3s;
		}

		#Rurippa .sample01 img:hover {
			/*  ホバーしたら1.2倍サイズに拡大  */
			transform: scale(1.2);
		}





		#Rurippa .sample02 {
			width: 200px;
			height: 150px;
			border: 3px solid #999;
			/*  拡大してはみ出した部分を非表示にする  */
			overflow: hidden;
		}

		#Rurippa .sample02 img {
			/*   拡大するのにかかる時間 */
			transition: all 0.3s;
		}

		#Rurippa .sample02 img:hover {
			/*  ホバーしたら1.2倍サイズに拡大  */
			transform: scale(1.2);
		}
	</style>



]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/hover_zoom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>サイトから学ぶ、hタグ（見出し）の使い方とデザイン #２</title>
		<link>https://taneppa.net/heading_design02/</link>
		<comments>https://taneppa.net/heading_design02/#comments</comments>
		<pubDate>Sun, 06 Jun 2021 01:07:26 +0000</pubDate>
		<dc:creator>futappa_staff</dc:creator>
				<category><![CDATA[デザイン]]></category>
		<category><![CDATA[Webデザイン]]></category>
		<category><![CDATA[コーディング]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=9283</guid>
		<description><![CDATA[実例サイトを例に、各見出しの使い方とデザインを学びましょう！]]></description>
				<content:encoded><![CDATA[

	<div id="Rurippa">

		<h3>目次</h3>
		<ul>
			<li><a href="#item00">はじめに</a></li>
			<li><a href="#item01">参考サイトのご紹介</a></li>
			<li><a href="#item10">まとめ</a></li>
		</ul>







		<div id="item00" class="spaceCont"></div>
		<h2>はじめに</h2>
		<p>実在するサイトを例に、見出しの使い方とデザインを学びましょう♪</p>

		<p>今回もキュレーションサイトで見つけた１サイトを参考例として紹介させていただきます★
			<br />部分的にスクショして載せており、全て掲載してる訳ではありません。細かい部分は実際のサイトも見て確認してみてくださいね。</p>




		<div id="item01" class="spaceCont"></div>
		<h2>参考サイトのご紹介</h2>
		<p>「BabySong」という、お子様の声を使って音楽をオーダーメイドする、新しいギフトサービスだそうです。ロゴは子供らしい可愛いロゴですが、サイト内の見出しはゴシックで見やすくデザインされていました。では早速、見出しデザインを見ていきましょう。</p>



		<h3>h1タグ</h3>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h1_011.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h1_011.jpg" alt="heading_h1_01" width="600" height="65" class="alignnone size-full wp-image-9292" /></a>
			<br />トップページのロゴ部分</p>

		<p><a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h1_02.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h1_02.jpg" alt="heading_h1_02" width="600" height="274" class="alignnone size-full wp-image-9310" /></a>
			<br />下層ページのメインタイトルの部分</p>

		<h3>h2タグ</h3>



		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_011.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_011.jpg" alt="heading_h2_01" width="600" height="208" class="alignnone size-full wp-image-9294" /></a>
			<br />トップページのメインビジュアルのすぐ下の部分
		</p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_021.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_021.jpg" alt="heading_h2_02" width="600" height="219" class="alignnone size-full wp-image-9295" /></a>

		</p>
		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_05.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_05.jpg" alt="heading_h2_05" width="600" height="" class="alignnone size-full wp-image-9323" /></a>

		</p>
		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_031.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_031.jpg" alt="heading_h2_03" width="600" height="163" class="alignnone size-full wp-image-9296" /></a>
			<br />「SAMPLE MUSIC」のセクションは、複数のページにありました。
		</p>
		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_041.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_041.jpg" alt="heading_h2_04" width="600" height="163" class="alignnone size-full wp-image-9297" /></a>

		</p>







		<h3>h3タグ</h3>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_011.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_011.jpg" alt="heading_h3_01" width="600" height="209" class="alignnone size-full wp-image-9298" /></a></p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_021.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_021.jpg" alt="heading_h3_02" width="600" height="180" class="alignnone size-full wp-image-9299" /></a>
		</p>











		<div id="item10" class="spaceCont"></div>
		<h2>まとめ</h2>
		<p>いかがでしたか？ 全体的にシンプルな見出しを使っているサイトでしたが、文字サイズなどで上手く調整されていると思います。色んなパターンのサイトの見出しに着目するのも勉強になりますね(^^)</p>





		<h3>参考サイト</h3>
		<ul>
			<li><a href="https://baby-song.com/" target="_blank">BabySong | こどもの声でつくる世界に一曲のオーダーメイド音楽ギフト</a></li>
		</ul>




	</div>

	<style>
		#Rurippa .spaceCont {
			padding-top: 30px;
			margin-top: -30px;
		}
	</style>



]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/heading_design02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>サイトから学ぶ、hタグ（見出し）の使い方とデザイン #１</title>
		<link>https://taneppa.net/heading_design01/</link>
		<comments>https://taneppa.net/heading_design01/#comments</comments>
		<pubDate>Wed, 16 Dec 2020 09:28:27 +0000</pubDate>
		<dc:creator>futappa_staff</dc:creator>
				<category><![CDATA[デザイン]]></category>
		<category><![CDATA[Webデザイン]]></category>
		<category><![CDATA[コーディング]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=9234</guid>
		<description><![CDATA[実例サイトを例に、各見出しの使い方とデザインを学びましょう！]]></description>
				<content:encoded><![CDATA[	<div id="Rurippa">

		<h3>目次</h3>
		<ul>
			<li><a href="#item00">はじめに</a></li>
			<li><a href="#item01">参考サイトのご紹介</a></li>
			<li><a href="#item10">まとめ</a></li>
		</ul>





		<div id="item00" class="spaceCont"></div>
		<h2>はじめに</h2>
		<p>色々なサイトを例に、各見出しの使い方とデザインを学びましょう！</p>

		<p>今回はキュレーションサイトで見つけた１サイトを参考例として紹介させていただきます★
		<br />部分的にスクショして載せており、全て掲載してる訳ではありません。細かい部分は実際のサイトも見て確認してみてくださいね。</p>




		<div id="item01" class="spaceCont"></div>
		<h2>参考サイトのご紹介</h2>
		<p>「株式会社アスカフューネラルサプライ」という葬儀施設運営、仏壇仏具販売をされている会社だそうです。綺麗に魅せているサイトだと思ったので、使わせていただきました(^^)<br />では早速ですが、各見出しをみていきましょう。</p>



<h3>h1タグ</h3>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h1_01.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h1_01.jpg" alt="heading_h1_01" width="600" height="65" class="alignnone size-full wp-image-9235" /></a>
		<br />トップページのロゴ部分</p>

<h3>h2タグ</h3>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_01.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_01.jpg" alt="heading_h2_01" width="600" height="442" class="alignnone size-full wp-image-9236" /></a><br />
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_02.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_02.jpg" alt="heading_h2_02" width="600" height="274" class="alignnone size-full wp-image-9237" /></a>
		<br />トップページ・下層ページ両方で使われていました。</p>


				<p>
					<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_04.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_04.jpg" alt="heading_h2_04" width="600" height="274" class="alignnone size-full wp-image-9239" /></a>
					<br />下層ページに、先ほどのよこバージョンもありました。
				</p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_03.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h2_03.jpg" alt="heading_h2_03" width="600" height="222" class="alignnone size-full wp-image-9238" /></a>

		</p>






		<h3>h3タグ</h3>
		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_01.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_01.jpg" alt="heading_h3_01" width="600" height="104" class="alignnone size-full wp-image-9240" /></a>
		</p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_02.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_02.jpg" alt="heading_h3_02" width="600" height="454" class="alignnone size-full wp-image-9241" /></a>
			<br />全ページ共通コンテンツの部分です。
		</p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_03.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_03.jpg" alt="heading_h3_03" width="600" height="187" class="alignnone size-full wp-image-9242" /></a>
			<br />全ページ共通コンテンツの部分です。
		</p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_04.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_04.jpg" alt="heading_h3_04" width="600" height="273" class="alignnone size-full wp-image-9243" /></a>
		</p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_05.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_05.jpg" alt="heading_h3_05" width="600" height="163" class="alignnone size-full wp-image-9244" /></a>
		</p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_06.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_06.jpg" alt="heading_h3_06" width="600" height="163" class="alignnone size-full wp-image-9245" /></a>
		</p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_07.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_07.jpg" alt="heading_h3_07" width="600" height="278" class="alignnone size-full wp-image-9246" /></a>
		</p>

		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_08.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_08.jpg" alt="heading_h3_08" width="600" height="228" class="alignnone size-full wp-image-9247" /></a>
			<br />会社案内のページで、理念などを掲載している部分です。メッセージ性のある大事な部分なので、他ページとは違う見せ方をしていました。
		</p>

<h3>h3・h4タグ</h3>
		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_09.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/10/heading_h3_09.jpg" alt="heading_h3_09" width="600" height="348" class="alignnone size-full wp-image-9248" /></a>
		</p>









		<div id="item10" class="spaceCont"></div>
		<h2>まとめ</h2>
		<p>いかがでしたか？ なんとなくデザインを見るだけでなく、共通の見出しを探したり、hタグのレベルはどうなっているのか？など気をつけて見るのも とても勉強になります！こういう習慣もつけていきたいですね♪</p>





		<h3>参考サイト</h3>
		<ul>
			<li><a href="https://asukafuneralsupply.co.jp/" target="_blank">株式会社アスカフューネラルサプライ｜新宮公益社</a></li>
		</ul>




	</div>

	<style>
		#Rurippa .spaceCont {
			padding-top: 30px;
			margin-top: -30px;
		}




	</style>



]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/heading_design01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>metaタグの &lt;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=edge,chrome=1&#8243;&gt;について調べてみた</title>
		<link>https://taneppa.net/html_check/</link>
		<comments>https://taneppa.net/html_check/#comments</comments>
		<pubDate>Mon, 18 May 2020 04:55:22 +0000</pubDate>
		<dc:creator>futappa_staff</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[コーディング]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=8297</guid>
		<description><![CDATA[&#60;meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"&#62;について、調べてみました。]]></description>
				<content:encoded><![CDATA[

	<div id="Rurippa">


		<p>色々なサイトのhead内をチェックして、気になった記載について。</p>

		<p>&lt;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=edge,chrome=1&#8243;&gt;
			<br />この中にある「chrome=1」というのが気になり、調べてみました。</p>






		<h2>chrome=1について</h2>

    <p>この記載がある場合、IEで閲覧しているときはGoogle Chrome Frameを利用して閲覧できる仕組みだったようです。</p>
    <p>「Google Chrome Frame」というのは、IEでもchromeのレンダリングエンジンを使って表示できるプラグインであり、そのためにの記載でした。ですが、Google Chrome Frameは2014年にサポート・開発も終了しています。</p>






		<h2>W3Cバリデートした結果</h2>

		<p>chrome=1を記載するとどうなるかの検証として、W3Cバリデートにかけてみました。
			<br />２つの画像をみてください。１枚名はエラーがありませんが、２枚目のように「,chrome=1」をつけるとエラーが出ます。</p>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/08/img01.png"><img src="https://taneppa.net/wp-content/uploads/2019/08/img01-500x466.png" alt="img01" width="500" height="466" class="alignnone size-medium wp-image-8304" /></a></p>

		<p><a href="https://taneppa.net/wp-content/uploads/2019/08/img02.png"><img src="https://taneppa.net/wp-content/uploads/2019/08/img02-500x466.png" alt="img02" width="500" height="466" class="alignnone size-medium wp-image-8305" /></a></p>








		<h2>補足</h2>

		<p>Google Chrome Frame自体は、不具合も多かったそうです。
      <br />参考サイト：<a href="http://os0x.hatenablog.com/entry/20090922/1253650825" target="_blank">IEをChromeにするGoogle Chrome Frameがすごい(けど実用的なレベルではないよ) &#8211; os0x.blog</a></p>

		<p>Google Chrome Frameの廃止背景
      <br />参考サイト：<a href="https://blog.chromium.org/2013/06/retiring-chrome-frame.html" target="_blank">Chromium Blog: Retiring Chrome Frame</a></p>

		<p>こちらのページも詳しく書いています。
      <br /><a href="https://jdash.info/archives/Google_Chrome_Frame_has_ended" target="_blank">まだ＜meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=edge,chrome=1&#8243;＞って書いていませんか？</a></p>






		<h2>結論</h2>
		<p>&lt;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=edge&#8221;&gt;という表記は、必要に応じて使ってOK。ただし、「,chrome=1」は不要です。</p>







		<h2>最後に</h2>
		<p>過去の制作物の名残りで、「,chrome=1」の表記が残っているサイトもあるかと思います。もし見かけたら、削除して問題ないようです。また、今回の例もそうですが、時には振り返ってコードの整理をしたり、「これ何かな？」という視点を持つことも大切だと感じました。</p>



	</div>





]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/html_check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>枠線に画像を使う方法</title>
		<link>https://taneppa.net/border_image_css01/</link>
		<comments>https://taneppa.net/border_image_css01/#comments</comments>
		<pubDate>Thu, 13 Feb 2020 00:49:48 +0000</pubDate>
		<dc:creator>rurippa!</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[コーディング]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=7888</guid>
		<description><![CDATA[縁に画像を使ったレイアウトにする方法を、２パターン紹介します！文字数の増減もOKです(^^)]]></description>
				<content:encoded><![CDATA[


	<div id="Rurippa">


		<h3>目次</h3>
		<ul>
			<li><a href="#item00">はじめに</a></li>
			<li><a href="#item01">backgroundプロパティを使う方法</a></li>
			<li><a href="#item02">border-imageプロパティを使う方法</a></li>
			<li><a href="#item10">まとめ</a></li>
		</ul>


		<div id="item00" class="spaceCont"></div>
		<h2>はじめに</h2>
		<p>
			<a href="https://taneppa.net/wp-content/uploads/2019/08/border_image_css01.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/08/border_image_css01-500x262.jpg" alt="border_image_css01" width="500" height="262" class="alignnone size-medium wp-image-7903" /></a>
		</p>
		<p>上記のように、枠に画像を使ったレイアウトにしたいときの方法を２パターン紹介します。<br />今回使用するパーツはこちら。リピート表示できるようにスライスしています。</p>
		<p><img src="http://taneppa.net/wp-content/uploads/2018/09/bg_pattern_green01.jpg" alt=""></p>


		<div id="item01" class="spaceCont"></div>
		<h2>backgroundプロパティを使う方法</h2>

		<p>backgroundを使って、画像をリピート表示します（緑の部分）。その上に、白いボックスを置くことで、見本通りの表示になります。これなら文字数の増減にも対応しています。</p>

		<p><a href="https://taneppa.net/wp-content/uploads/2019/08/borderimg01.jpg"><img src="https://taneppa.net/wp-content/uploads/2019/08/borderimg01-500x137.jpg" alt="borderimg01" width="500" height="137" class="alignnone size-medium wp-image-7906" /></a></p>



		<h3>サンプル</h3>
		<div class="wrap">
			<p class="txtBox">
				吾輩は猫である。名前はまだ無い。どこで生れたかとんと見当がつかぬ。何でも薄暗いじめじめした所でニャーニャー泣いていた事だけは記憶している。吾輩はここで始めて人間というものを見た。
			</p>
		</div>

		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;wrap&quot;&gt;
			&lt;p class=&quot;txtBox&quot;&gt;
				吾輩は猫である。名前はまだ無い。どこで生れたかとんと見当がつかぬ。何でも薄暗いじめじめした所でニャーニャー泣いていた事だけは記憶している。吾輩はここで始めて人間というものを見た。
			&lt;/p&gt;
		&lt;/div&gt;
		</pre>

		<pre class="brush: xml; title: ; notranslate">
		.wrap{
			width: 200px;
			padding: 10px;/* 枠線の幅 */
			background-image: url(画像のパス);
			background-repeat: repeat;
		}

		.txtBox{
			padding: 10px;
			background-color: rgb(255,255,255,1);
			font-size: 12px;
		}
		</pre>





		<div id="item02" class="spaceCont"></div>
		<h2>border-imageプロパティを使う方法</h2>
		<p>IE10など 一部非対応のブラウザもありますが、border-imageプロパティでも実装ます（<a href="https://caniuse.com/#search=border-image" target="_blank">対応ブラウザはこちら</a>）。※今記事では、border-imageの詳しい説明は省きます。</p>


		<h3>サンプル</h3>
		<div class="sample01">
			吾輩は猫である。名前はまだ無い。どこで生れたかとんと見当がつかぬ。何でも薄暗いじめじめした所でニャーニャー泣いていた事だけは記憶している。吾輩はここで始めて人間というものを見た。
		</div>

		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;sample01&quot;&gt;
			吾輩は猫である。名前はまだ無い。どこで生れたかとんと見当がつかぬ。何でも薄暗いじめじめした所でニャーニャー泣いていた事だけは記憶している。吾輩はここで始めて人間というものを見た。
		&lt;/div&gt;

		</pre>

		<pre class="brush: xml; title: ; notranslate">
		.sample01{
			width: 200px;
			padding: 10px;
			border: 10px solid #96d1a9;
			border-image:url(画像のパス) 15 round;
		}

		</pre>





		<div id="item10" class="spaceCont"></div>
		<h2>まとめ</h2>
		<p>うまくできましたか？<br />今回のように見た目は同じでも、やり方が複数あることが多いので状況に合わせてやってみてくださいね。</p>

		<h3>参考サイト</h3>
		<ul>
			<li><a href="https://developer.mozilla.org/ja/docs/Web/CSS/border-image" target="_blank">border-image &#8211; CSS: カスケーディングスタイルシート</a></li>
		</ul>





	</div>




	<style>
		#Rurippa .spaceCont {
			padding-top: 30px;
			margin-top: -30px;
		}

		#Rurippa .wrap {
			width: 200px;
			padding: 10px;
			background-image: url(http://taneppa.net/wp-content/uploads/2018/09/bg_pattern_green01.jpg);
			background-repeat: repeat;

			margin: 0;
		}

		#Rurippa .txtBox {
			padding: 10px;
			background-color: rgb(255, 255, 255, 1);
			font-size: 12px;

			margin: 0;
		}

		#Rurippa .sample01 {
			width: 200px;
			padding: 10px;
			border-style: solid;
			border-width: 10px;
      border-color: #96d1a9;
			border-image-source: url(http://taneppa.net/wp-content/uploads/2018/09/bg_pattern_green01.jpg);
			border-image-slice: 15;
			border-image-width: 1;
			border-image-outset: 0;
			border-image-repeat: round;
			background-color: #fff;
		}
	</style>



]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/border_image_css01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ブラウザのシェア率の調べ方</title>
		<link>https://taneppa.net/browser-share/</link>
		<comments>https://taneppa.net/browser-share/#comments</comments>
		<pubDate>Tue, 04 Feb 2020 02:40:36 +0000</pubDate>
		<dc:creator>rurippa!</dc:creator>
				<category><![CDATA[Web制作]]></category>
		<category><![CDATA[ネタ]]></category>
		<category><![CDATA[コーディング]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=7606</guid>
		<description><![CDATA[ブラウザのシェア率の調べ方を紹介します。全世界、国内別、ブラウザのバージョン、OS別など 用途に応じて調べられます。]]></description>
				<content:encoded><![CDATA[	<div id="Rurippa">

		<h3>目次</h3>
		<ul>
			<li><a href="#item00">はじめに</a></li>
			<li><a href="#item01">おすすめのサイト</a></li>
			<li><a href="#item02">調べ方</a></li>
			<li><a href="#item10">まとめ</a></li>
		</ul>







		<div id="item00" class="spaceCont"></div>
		<h2>はじめに</h2>

		<p>ブラウザによって使えるCSSが異なったり、見栄えが変わります。また、どこまでのブラウザに対応するかで、工数にも差が生まれます。<br />適切に対応できるようにするためにも、シェア率を知っておくことは大事だと思いますので、自分でも調べられる方法を紹介します！(^^)</p>



		<div id="item01" class="spaceCont"></div>
		<h2>おすすめのサイト</h2>
		<p>有名なサイトになりますが、<a href="http://gs.statcounter.com/" target="_blank">StatCounter Global Stats</a>というサイトがおすすめです。<br />全て英語になりますが、視覚的にもわかりやすく利用しやすいと思います。</p>
		<p>もし抵抗がありましたら、日本語訳をかけるのがおすすめです。</p>




		<div id="item02" class="spaceCont"></div>
		<h2>調べ方</h2>
		<p>トップページの中程に、画像と同じ一覧があります。そこで、左上の「Browser Market Share」を選ぶと ブラウザのシェア率を調べることができます。<br />他にも、OSや解像度・ブラウザバージョン別のシェアなど 色々調べることができます。</p>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/07/dl1.png"><img src="https://taneppa.net/wp-content/uploads/2019/07/dl1.png" alt="dl1" width="500" height="378" class="alignnone size-medium wp-image-7607" /></a></p>

		<p>次に、下記の部分で「Japan」を選択すると、調査対象を「国内」に限定できます。</p>

		<a href="https://taneppa.net/wp-content/uploads/2019/07/dl2.png"><img src="https://taneppa.net/wp-content/uploads/2019/07/dl2.png" alt="dl2" width="500" height="265" class="alignnone size-medium wp-image-7608" /></a>

		<p>期間やグラフの種類など、もっと細かい設定は グラフ右上「Edit Chart Data」からでできます。</p>

		<p><a href="https://taneppa.net/wp-content/uploads/2019/07/dl3.png"><img src="https://taneppa.net/wp-content/uploads/2019/07/dl3-500x460.png" alt="dl3" width="500" height="460" class="alignnone size-medium wp-image-7611" /></a></p>


		<p>日本語訳したものも添付しました。
			<br />「<strong>Statistic</strong>」では調べたい項目を選択できます（ブラウザのバージョン、OS別など）。さらにデバイスでも絞れます。
			<br />「<strong>Region</strong>」では、全国や日本だけ、アジアだけなどの範囲を選べます。
			<br />「<strong>Chart Type</strong>」ではグラフの種類を選べます。
			<br />「<strong>Period</strong>」では、調べたい期間を選択できます。直近の３ヶ月や、昨年の情報など、必要に応じて選んでみてください。</p>
		<p>好きな設定ができたら、View Chartを選ぶと、グラフが表示されます。</p>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/07/dl4.png"><img src="https://taneppa.net/wp-content/uploads/2019/07/dl4.png" alt="dl4" width="500" height="313" class="alignnone size-medium wp-image-7612" /></a></p>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/07/dl5.png"><img src="https://taneppa.net/wp-content/uploads/2019/07/dl5.png" alt="dl5" width="500" height="313" class="alignnone size-medium wp-image-7612" /></a></p>

		<p>今回は、国内限定で、2019年4〜6月の３ヶ月間のブラウザシェア率（PC）を調べました。個人的に棒グラフがみやすいので、この設定です。</p>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/07/dl6.png"><img src="https://taneppa.net/wp-content/uploads/2019/07/dl6.png" alt="dl6" width="500" height="293" class="alignnone size-medium wp-image-7613" /></a></p>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/07/dl7.png"><img src="https://taneppa.net/wp-content/uploads/2019/07/dl7.png" alt="dl7" width="500" height="293" class="alignnone size-medium wp-image-7613" /></a></p>
<h3>2019年4〜6月の３ヶ月間のブラウザシェア率（PC）</h3>
		<p>
		Chrome	57.93%<br />
		IE	14.16%<br />
		Firefox　9.75%<br />
		Safari	8.6%<br />
		Edge	7.57%<br />
		Opera	0.73%</p>

		<p>IEのシェア率はきになるところですが、、、まだ14%ありますね(^^;)さらに、ブラウザのバージョンも調べられますので、興味があれば 調べてみてくださいね。</p>



		<div id="item10" class="spaceCont"></div>
		<h2>まとめ</h2>
		<p>いかがでしたか？
			<br />ブラウザのシェア率を調べておくことで、どのブラウザまで対応するべきか、この記述は使えるのか…など、事前に調べておくことができます。ぜひご活用ください♪</p>





	</div>

	<style>
		#Rurippa .spaceCont {
			padding-top: 30px;
			margin-top: -30px;
		}
	</style>








]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/browser-share/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>コピペで使える box-shadowの使用例９パターン</title>
		<link>https://taneppa.net/boxshadow_sample/</link>
		<comments>https://taneppa.net/boxshadow_sample/#comments</comments>
		<pubDate>Thu, 30 Jan 2020 03:49:36 +0000</pubDate>
		<dc:creator>rurippa!</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[コーディング]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=7835</guid>
		<description><![CDATA[シャドウ（box-shadow）の使用例を紹介します。コピペして使用できます。]]></description>
				<content:encoded><![CDATA[


	<div id="Rurippa">

		<h3>目次</h3>
		<ul>
			<li><a href="#item00">はじめに</a></li>
			<li><a href="#item01">右下に影をつける</a></li>
			<li><a href="#item02">ボックスの外側全体に影をつける</a></li>
			<li><a href="#item03">左上の内側に影をつける</a></li>
			<li><a href="#item04">右下の内側に影をつける</a></li>
			<li><a href="#item05">ボックスの内側全体に影をつける</a></li>
			<li><a href="#item06">左下が浮いている風の影をつける</a></li>
			<li><a href="#item07">右下が浮いている風の影をつける</a></li>
			<li><a href="#item08">両端が浮いた風の影をつける</a></li>
			<li><a href="#item09">右下にハッキリした影をつける</a></li>
			<li><a href="#item10">まとめ</a></li>
		</ul>







		<div id="item00" class="spaceCont"></div>
		<h2>はじめに</h2>
		<p>使用例としてbox-shadowを使って、ボックスに影をつけてみました。コピペでも使えますので、参考にしてみてください♪</p>

		<h3>共通のCSSはこちら（白い四角の部分）</h3>
			<pre class="brush: xml; title: ; notranslate">
			div{
				position: relative;
				width: 200px;
				height: 100px;
				background-color: #fff;
			}
			</pre>




		<h2>サンプル</h2>
		<div id="item01" class="spaceCont"></div>


		<h3>右下に影をつける</h3>

		<div class="sampleWrap"><div class="sample01"></div></div>
		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;sample01&quot;&gt;&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample01{
		  box-shadow: 5px 5px 5px rgba(0,0,0,.2);
		}
		</pre>






<div id="item02" class="spaceCont"></div>
		<h3>ボックスの外側全体に影をつける</h3>

		<div class="sampleWrap"><div class="sample02"></div></div>
		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;sample02&quot;&gt;&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample02{
		  box-shadow: 0 0 10px rgba(0,0,0,.3);
		}
		</pre>



<div id="item03" class="spaceCont"></div>
		<h3>左上の内側に影をつける</h3>

		<div class="sampleWrap"><div class="sample03"></div></div>
		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;sample03&quot;&gt;&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample03{
		  box-shadow: 5px 5px 5px rgba(0,0,0,.2) inset;
		}
		</pre>



<div id="item04" class="spaceCont"></div>

		<h3>右下の内側に影をつける</h3>

		<div class="sampleWrap"><div class="sample04"></div></div>
		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;sample04&quot;&gt;&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample04{
		  box-shadow: -5px -5px 5px rgba(0,0,0,.2) inset;
		}
		</pre>



<div id="item05" class="spaceCont"></div>
		<h3>ボックスの内側全体に影をつける</h3>

		<div class="sampleWrap"><div class="sample05"></div></div>
		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;sample05&quot;&gt;&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample05{
		  box-shadow: 0 0 5px 5px rgba(0,0,0,.2) inset;
		}
		</pre>



<div id="item06" class="spaceCont"></div>
		<h3>左下が浮いている風の影をつける</h3>

		<div class="sampleWrap"><div class="sample06"></div></div>
		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;sample06&quot;&gt;&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample06{
			position: relative;
			width: 200px;
			height: 100px;
			background-color: #fff;
		}

		.sample06::before{
			content:&quot;&quot;;
			position: absolute;
			z-index: -1;
			bottom: 10px;
			display: block;
			width: 50%;
			height: 50%;
			box-shadow: 0 10px 5px rgba(0,0,0,.3);
		}

		.sample06::before{
			left: 5px;
			transform:rotate(-3deg);
		}
		</pre>



<div id="item07" class="spaceCont"></div>
		<h3>右下が浮いている風の影をつける</h3>

		<div class="sampleWrap"><div class="sample07"></div></div>
		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;sample07&quot;&gt;&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample07{
			position: relative;
			width: 200px;
			height: 100px;
			background-color: #fff;
		}

		.sample07::after{
			content:&quot;&quot;;
			position: absolute;
			z-index: -1;
			bottom: 10px;
			display: block;
			width: 50%;
			height: 50%;
			box-shadow: 0 10px 5px rgba(0,0,0,.3);
		}

		.sample07::after{
			right: 5px;
			transform:rotate(3deg);
		}
		</pre>



<div id="item08" class="spaceCont"></div>
		<h3>両端が浮いた風の影をつける</h3>

		<div class="sampleWrap"><div class="sample08"></div></div>
		<pre class="brush: xml; title: ; notranslate">
		&lt;div class=&quot;sample08&quot;&gt;&lt;/div&gt;
		</pre>
		<pre class="brush: xml; title: ; notranslate">
		.sample08{
			position: relative;
			width: 200px;
			height: 100px;
			background-color: #fff;
		}

		.sample08::before,
		.sample08::after{
			content:&quot;&quot;;
			position: absolute;
			z-index: -1;
			bottom: 10px;
			display: block;
			width: 50%;
			height: 50%;
			box-shadow: 0 10px 5px rgba(0,0,0,.3);
		}

		.sample08::before{
			left: 5px;
			transform:rotate(-3deg);
		}

		.sample08::after{
			right: 5px;
			transform:rotate(3deg);
		}
		</pre>






		<div id="item09" class="spaceCont"></div>
				<h3>右下にハッキリした影をつける</h3>

				<div class="sampleWrap"><div class="sample09"></div></div>
				<pre class="brush: xml; title: ; notranslate">
				&lt;div class=&quot;sample09&quot;&gt;&lt;/div&gt;
				</pre>
				<pre class="brush: xml; title: ; notranslate">
				.sample09{
				  box-shadow: 0 0 5px 5px rgba(0,0,0,.2) inset;
				}
				</pre>








		<div id="item10" class="spaceCont"></div>
		<h2>まとめ</h2>
		<p>いかがでしたか？<br />色々なニュアンスを表現できますので、ぜひ使ってみてくださいね。また、ジェネレーター（<a href="https://css-generator.net/box-shadow/" target="
			">サイトはこちら</a>）などを使ってみるのもオススメです。</p>







	</div>

	<style>
		#Rurippa .spaceCont {
			padding-top: 30px;
			margin-top: -30px;
		}
		.sampleWrap {
 position: relative;
    z-index: -2;
    max-width: 205px;
    background-color: #eee;
    padding: 20px;
    border: 1px solid rgba(0,0,0,.2);

		}
		.sampleWrap div{
			position: relative;
		 	width: 200px;
		 	height: 100px;
		 	background-color: #fff;
}
.commonStyle{
	position: relative;
	width: 200px;
	height: 100px;
	background-color: #fff;
}
/****************/

#Rurippa .sample01{
  box-shadow: 5px 5px 5px rgba(0,0,0,.2);
}
#Rurippa .sample02{
  box-shadow: 0 0 10px rgba(0,0,0,.3);
}

#Rurippa .sample03{
  box-shadow: 5px 5px 5px rgba(0,0,0,.2) inset;
}


#Rurippa .sample04{
  box-shadow: -5px -5px 5px rgba(0,0,0,.2) inset;
}

#Rurippa .sample04{
  box-shadow: -5px -5px 5px rgba(0,0,0,.2) inset;
}

#Rurippa .sample05{
  box-shadow: 0 0 5px 5px rgba(0,0,0,.2) inset;
}

/**********/
#Rurippa .sample06{
	position: relative;
	width: 200px;
	height: 100px;
	background-color: #fff;
}

#Rurippa .sample06::before{
	content:"";
	position: absolute;
	z-index: -1;
	bottom: 10px;
	display: block;
	width: 50%;
	height: 50%;
	box-shadow: 0 10px 5px rgba(0,0,0,.3);
}

#Rurippa .sample06::before{
	left: 5px;
	transform:rotate(-3deg);
}


/**********/
#Rurippa .sample07{
	position: relative;
	width: 200px;
	height: 100px;
	background-color: #fff;
}

#Rurippa .sample07::after{
	content:"";
	position: absolute;
	z-index: -1;
	bottom: 10px;
	display: block;
	width: 50%;
	height: 50%;
	box-shadow: 0 10px 5px rgba(0,0,0,.3);
}

#Rurippa .sample07::after{
	right: 5px;
	transform:rotate(3deg);
}
/**********/
#Rurippa .sample08{
	position: relative;
	width: 200px;
	height: 100px;
	background-color: #fff;
}

#Rurippa .sample08::before,
#Rurippa .sample08::after{
	content:"";
	position: absolute;
	z-index: -1;
	bottom: 10px;
	display: block;
	width: 50%;
	height: 50%;
	box-shadow: 0 10px 5px rgba(0,0,0,.3);
}

#Rurippa .sample08::before{
	left: 5px;
	transform:rotate(-3deg);
}

#Rurippa .sample08::after{
	right: 5px;
	transform:rotate(3deg);
}
/**********/
#Rurippa .sample09{
  box-shadow: 10px 10px 0 rgba(0,0,0,.2);
}






	</style>








]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/boxshadow_sample/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>class名に使えそうな英語まとめ</title>
		<link>https://taneppa.net/class_name_english/</link>
		<comments>https://taneppa.net/class_name_english/#comments</comments>
		<pubDate>Thu, 28 Nov 2019 01:17:40 +0000</pubDate>
		<dc:creator>rurippa!</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[ネタ]]></category>
		<category><![CDATA[コーディング]]></category>
		<category><![CDATA[効率化]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=6638</guid>
		<description><![CDATA[class名、ファイル名などに使える 英単語まとめました。]]></description>
				<content:encoded><![CDATA[	<p>class名など英単語を使うことも多いと思いますが、辞書で調べたり どちらにしようかとか、悩むことありませんか？
		<br />私もよく困ったので、使えそうなものや よく使うものをまとめてみます！（※長い単語は略称も一緒に書いてるものもありますが、正式な略ではないので、お気をつけください。）
		<br />ぜひ、同じ悩みをお持ちの方はご活用ください♪</p>




	<h2>ページ名やカテゴリー名に使えそうな英単語</h2>

	<table class="koyaTbl">
		<tbody>
			<tr>
				<td>about</td>
				<td>〜について</td>
			</tr>
			<tr>
				<td>company</td>
				<td>会社概要など</td>
			</tr>
			<tr>
				<td>service</td>
				<td>サービス</td>
			</tr>
			<tr>
				<td>work、works</td>
				<td>事業実績</td>
			</tr>
			<tr>
				<td>history</td>
				<td>沿革、歴史</td>
			</tr>
			<tr>
				<td>access</td>
				<td>アクセス、交通情報</td>
			</tr>
			<tr>
				<td>privacy</td>
				<td>プライバシーポリシーなど</td>
			</tr>
			<tr>
				<td>recommend</td>
				<td>おすすめ</td>
			</tr>
			<tr>
				<td>contact、inquiry</td>
				<td>お問い合わせ</td>
			</tr>
			<tr>
				<td>feature</td>
				<td>特徴、特集</td>
			</tr>
			<tr>
				<td>price</td>
				<td>料金</td>
			</tr>
			<tr>
				<td>news、information、info</td>
				<td>ニュース、新着情報、情報</td>
			</tr>
			<tr>
			<tr>
				<td>category</td>
				<td>カテゴリー</td>
			</tr>
			<tr>
				<td>result</td>
				<td>結果</td>
			</tr>
			<tr>
				<td>staff</td>
				<td>スタッフ、社員紹介など</td>
			</tr>
			<tr>
				<td>recruit</td>
				<td>採用情報</td>
			</tr>
			<tr>
				<td>faq</td>
				<td>よくある質問、Q&#038;A</td>
			</tr>
			<tr>
				<td>other</td>
				<td>その他</td>
			</tr>
		</tbody>
	</table>





	<h2>パーツ名やclass名に組み合わせて、使えそうな英単語</h2>
  <h3>レイアウト関連など</h3>
	<table class="koyaTbl">
		<tbody>
			<tr>
				<td>wrap、wrapper</td>
				<td>外枠</td>
			</tr>
			<tr>
				<td>inner</td>
				<td>インナー、内枠</td>
			</tr>
			<tr>
				<td>block、box</td>
				<td>ブロック、ボックス、要素をまとめるとき等</td>
			</tr>
			<tr>
				<td>common、com、cmn</td>
				<td>共通の</td>
			</tr>
			<tr>
				<td>module、mod</td>
				<td>モジュール、部品</td>
			</tr>
		</tbody>
	</table>

<h3>テキスト系</h3>
	<table class="koyaTbl">
		<tbody>
			<tr>
				<td>note</td>
				<td>注釈</td>
			</tr>
			<tr>
				<td>notice、caution</td>
				<td>警告、注意文</td>
			</tr>
			<tr>
				<td>text、txt</td>
				<td>テキスト、文章</td>
			</tr>
			<tr>
				<td>title、tit、ttl</td>
				<td>タイトル、見出し</td>
			</tr>
			<tr>
				<td>lead</td>
				<td>リード文</td>
			</tr>
			<tr>
				<td>more</td>
				<td>もっと、更に</td>
			</tr>
			<tr>
				<td>detail</td>
				<td>詳細、細部</td>
			</tr>

		</tbody>
	</table>

<h3>パーツ名など</h3>
	<table class="koyaTbl">
		<tr>
			<td>banner、bnr</td>
			<td>バナー</td>
		</tr>
		<tr>
			<td>logo</td>
			<td>ロゴ画像</td>
		</tr>
		<tr>
			<td>icon、icn</td>
			<td>アイコン</td>
		</tr>
		<tr>
			<td>button、btn</td>
			<td>ボタン</td>
		</tr>
		<tr>
			<td>movie</td>
			<td>動画</td>
		</tr>
		<tr>
			<td>image、img、thumbnail</td>
			<td>画像、サムネイル</td>
		</tr>
		<tr>
			<td>slide、slider</td>
			<td>スライド、スライドショー</td>
		</tr>
		<tr>
			<td>popup</td>
			<td>ポップアップ</td>
		</tr>
	</table>

<h3>形の名称</h3>
	<table class="koyaTbl">
		<tr>
			<td>circle</td>
			<td>丸</td>
		</tr>
		<tr>
			<td>triangle</td>
			<td>三角</td>
		</tr>
		<tr>
			<td>square</td>
			<td>四角</td>
		</tr>
		<tr>
			<td>round</td>
			<td>角丸</td>
		</tr>
	</table>


<h2>最後に</h2>
<p>いかがでしたか？英語など調べることも多々ありあますが、少しでも参考になりましたら幸いです(^^)</p>



	<style>
		.koyaTbl tr td:first-child {
			width: 30%;
		}
	</style>


]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/class_name_english/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>headの中身を確認してみよう（HTML）</title>
		<link>https://taneppa.net/html_head_check/</link>
		<comments>https://taneppa.net/html_head_check/#comments</comments>
		<pubDate>Fri, 15 Nov 2019 01:30:38 +0000</pubDate>
		<dc:creator>rurippa!</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[コーディング]]></category>

		<guid isPermaLink="false">https://taneppa.net/?p=8245</guid>
		<description><![CDATA[headでよく使われているタグを確認してみましょう！]]></description>
				<content:encoded><![CDATA[
	<div id="Rurippa">






		<h2>はじめに</h2>
		<p>headタグの中身、なんとなくで使っているタグないですか？<br />今回はよく記載されているものを確認していきます。</p>




		<h2>headの中身を確認してみよう</h2>
		<h3>文字のエンコード</h3>
		<pre class="brush: xml; title: ; notranslate">
		&lt;meta charset=&quot;utf-8&quot;&gt;
		</pre>

		<p>文字コードを指定します。文字化けの原因になるので必ず記載しましょう。</p>




		<h3>タイトル</h3>
		<pre class="brush: xml; title: ; notranslate">
		&lt;title&gt;たねっぱ！&lt;/title&gt;
		</pre>

		<p>webサイト・ページのタイトルになります。ブラウザの検索結果や、ブラウザのタブにも表示されます。</p>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/08/01.png"><img src="https://taneppa.net/wp-content/uploads/2019/08/01-500x93.png" alt="01" width="500" height="93" class="alignnone size-medium wp-image-8246" /></a></p>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/08/03.png"><img src="https://taneppa.net/wp-content/uploads/2019/08/03.png" alt="03" width="314" height="82" class="alignnone size-full wp-image-8252" /></a></p>



		<h3>ディスクリプションの設定</h3>
		<pre class="brush: xml; title: ; notranslate">
		&lt;meta name=&quot;description&quot; content=&quot;&quot;&gt;
		</pre>

		<p>ディスクリプションに記入したテキストは、検索結果に出る文章としても使われます。（使われない場合もあります）</p>
		<p><a href="https://taneppa.net/wp-content/uploads/2019/08/02.png"><img src="https://taneppa.net/wp-content/uploads/2019/08/02-500x90.png" alt="02" width="500" height="90" class="alignnone size-medium wp-image-8248" /></a></p>



		<h3>キーワードの設定</h3>
		<pre class="brush: xml; title: ; notranslate">
		&lt;meta name=&quot;keywords&quot; content=&quot;キーワード1,キーワード2,キーワード3&quot;&gt;
		</pre>

		<p>サイトに関するキーワードを複数設定できますが、直接的なSEOの効果はありません。</p>



		<h3>ビューポートの設定</h3>
		<pre class="brush: xml; title: ; notranslate">
		&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
		</pre>

		<p>スマホやレスポンシブ対応する場合は必須になります。</p>



		<h3>電話番号などの自動リンク無効化</h3>
		<pre class="brush: xml; title: ; notranslate">
		&lt;meta name=&quot;format-detection&quot; content=&quot;telephone=no&quot;&gt;
		</pre>

		<p>ページ内の電話番号（およびその他の番号なども）自動的にリンクしてしまうので、それらを無効化します。</p>



		<h3>IE対策</h3>
		<pre class="brush: xml; title: ; notranslate">
		&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;
		</pre>

		<p>これを入れることで、IE・エッジの最新バージョンで表示されます。互換モードで表示されている場合も、通常表示になります。</p>



		<h3>SNS対策・OGPの設定</h3>
		<pre class="brush: xml; title: ; notranslate">
    &lt;!-- OGP --&gt;
    &lt;meta property=&quot;og:url&quot; content=&quot;ページのURL&quot;&gt;
    &lt;meta property=&quot;og:type&quot; content=&quot;ページの種類&quot;&gt;
    &lt;meta property=&quot;og:title&quot; content=&quot;ページのタイトル&quot;&gt;
    &lt;meta property=&quot;og:description&quot; content=&quot;ページの説明文&quot;&gt;
    &lt;meta property=&quot;og:image&quot; content=&quot;画像のURL&quot;&gt;
    &lt;meta property=&quot;og:site_name&quot; content=&quot;サイトの名前&quot;&gt;
    &lt;meta property=&quot;og:locale&quot; content=&quot;ja_JP&quot;&gt;

    &lt;!-- Facebook --&gt;
    &lt;meta property=&quot;fb:app_id&quot; content=&quot;アプリID&quot;&gt;
    &lt;meta property=&quot;article:publisher&quot; content=&quot;FacebookページのURL&quot; /&gt;

    &lt;!-- Twitter --&gt;
    &lt;meta name=&quot;twitter:card&quot; content=&quot;Twitterカードの種類&quot; /&gt;
    &lt;meta name=&quot;twitter:site&quot; content=&quot;@ユーザー名&quot; /&gt;
    &lt;meta name=&quot;twitter:creator&quot; content=&quot;@ユーザー名&quot;&gt;
    &lt;meta name=&quot;twitter:title&quot; content=&quot;ページのタイトル&quot;&gt;
    &lt;meta name=&quot;twitter:description&quot; content=&quot;ページの説明文&quot;&gt;
    &lt;meta name=&quot;twitter:image&quot; content=&quot;画像のURL&quot;&gt;

		</pre>
    <p>FacebookやTwittertなどでシェアされた時の設定になります。</p>
		<p>補足ですが、og:type（ページの種類）は、website・blog・article・profileなどがあります。<br />
    twitter:card（カードの種類）は、summaryかsummary_large_imageがあります。</p>



		<h3>ファビコンの設定</h3>
    <pre class="brush: xml; title: ; notranslate">
    &lt;!-- icoの場合 --&gt;
    &lt;link rel=&quot;icon&quot; href=&quot;/favicon.ico&quot;&gt;

    &lt;!-- pngの場合 --&gt;
    &lt;link rel=&quot;icon&quot; type=&quot;image/png&quot; href=&quot;/favicon.png&quot;&gt;

    &lt;!-- gifの場合 --&gt;
    &lt;link rel=&quot;icon&quot; type=&quot;image/gif&quot; href=&quot;/favicon.gif&quot;&gt;
    </pre>


		<h3>CSSの読み込み</h3>
    <pre class="brush: xml; title: ; notranslate">
    &lt;link rel=&quot;stylesheet&quot; href=&quot;&quot;&gt;
    </pre>


		<h3>JavaScriptの読み込み</h3>
    <pre class="brush: xml; title: ; notranslate">
    &lt;script src=&quot;&quot;&gt;&lt;/script&gt;
    </pre>



		<h2>最後に</h2>
		<p>いかがでしたか？headには大事な情報が詰まっているので、しっかり設定していきたいですね(^^)♪</p>








	</div>





]]></content:encoded>
			<wfw:commentRss>https://taneppa.net/html_head_check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
