<?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>MRC株式会社 &#187; firefox</title>
	<atom:link href="http://team-mrc.com/archives/tag/firefox/feed" rel="self" type="application/rss+xml" />
	<link>http://team-mrc.com</link>
	<description>システム開発・HP製作・映像編集のMRCへようこそ</description>
	<lastBuildDate>Wed, 11 Jan 2012 11:14:29 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://team-mrc.com/archives/tag/firefox/feed" />
		<item>
		<title>IE8で見るとホームページの表示がずれてしまう場合の対処法</title>
		<link>http://team-mrc.com/archives/1204</link>
		<comments>http://team-mrc.com/archives/1204#comments</comments>
		<pubDate>Fri, 16 Oct 2009 07:38:09 +0000</pubDate>
		<dc:creator>MRC株式会社　清原</dc:creator>
				<category><![CDATA[お役立ち情報]]></category>
		<category><![CDATA[全ての投稿]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[表示がずれる]]></category>

		<guid isPermaLink="false">http://team-mrc.com/?p=1204</guid>
		<description><![CDATA[今回はIE7、firefoxではちゃんと表示されているのにIE8だと表示がずれてしまう問題の解決方法をご紹介いたします。CSSをハックできるのならそれに越した事はないのですが、面倒な方、何でIE8でずれるのか全くわからな [...]]]></description>
			<content:encoded><![CDATA[<p>今回はIE7、firefoxではちゃんと表示されているのにIE8だと表示がずれてしまう問題の解決方法をご紹介いたします。CSSをハックできるのならそれに越した事はないのですが、面倒な方、何でIE8でずれるのか全くわからない方のために非常に簡単な方法をご紹介いたします。弊社のホームページで違いを再現いたしますと</p>
<p>IE8での表示は</p>
<p style="TEXT-ALIGN: center"><img class="size-full wp-image-1205 aligncenter" title="ie8" src="http://team-mrc.com/mrc/img/ie8.jpg" alt="ie8" width="600" height="400" /></p>
<p>若干ですが、右上の検索の虫眼鏡が上にずれていますよね？IE7ですと</p>
<p style="text-align: center;"><img class="size-full wp-image-1206 aligncenter" title="ie7" src="http://team-mrc.com/mrc/img/ie7.jpg" alt="ie7" width="600" height="400" /></p>
<p>のようにちゃんと同じ高さで表示されます。firefoxもIE7と同じように表示されます。<br />
「そんくらいCSSハックしろよ」との声が聞こえてきそうですが、次に出るであろうIE9の事を考えると今回はこの対処法でいいのではないかな？と思います。方法としては物凄く簡単で下のmetaタグをヘッダーに貼り付けるだけです。</p>
<p>&lt;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=emulateIE7&#8243; /&gt;</p>
<p>意味はソースをIE7として解釈しろ!と言う事だそうです。</p>
<p>記事：清原一馬</p>
]]></content:encoded>
			<wfw:commentRss>http://team-mrc.com/archives/1204/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://team-mrc.com/archives/1204" />
	</item>
		<item>
		<title>javascriptでリンクをクリックした時の点線を消す方法</title>
		<link>http://team-mrc.com/archives/893</link>
		<comments>http://team-mrc.com/archives/893#comments</comments>
		<pubDate>Wed, 15 Apr 2009 07:05:25 +0000</pubDate>
		<dc:creator>MRC株式会社　清原</dc:creator>
				<category><![CDATA[お役立ち情報]]></category>
		<category><![CDATA[全ての投稿]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[onFocus="this.blur()"]]></category>
		<category><![CDATA[クリック]]></category>
		<category><![CDATA[リンク]]></category>
		<category><![CDATA[点線]]></category>

		<guid isPermaLink="false">http://team-mrc.com/?p=893</guid>
		<description><![CDATA[&#60;a href=&#8221;アドレス&#8221; onfocus=&#8221;this.blur()&#8221;&#62;リンク&#60;/a&#62; を使えばリンクをクリックしたときの点線を消す事ができますが [...]]]></description>
			<content:encoded><![CDATA[<p>&lt;a href=&#8221;アドレス&#8221; onfocus=&#8221;this.blur()&#8221;&gt;リンク&lt;/a&gt;<br />
を使えばリンクをクリックしたときの点線を消す事ができますが、ページ内のリンク全てにonFocus=&#8221;this.blur()&#8221; を追加するのは流石に面倒ですよね。そこで今回はjavascriptでフォーカスを制御する方法をご紹介いたします。ただ、このonFocus=&#8221;this.blur()&#8221; を使ってしまうとタブでの移動ができなくなりますのでご注意下さい。</p>
<p> </p>
<p><span style="color: #0000ff;">window.onload=function(){<br />
a=document.getElementsByTagName(&#8220;a&#8221;);<br />
for(i=0;i&lt;a.length;i++){<br />
a[i].onfocus=function(){this.blur();}<br />
}<br />
area=document.getElementsByTagName(&#8220;area&#8221;);<br />
for(i=0;i&lt;area.length;i++){<br />
area[i].onfocus=function(){this.blur();}<br />
}<br />
}</span></p>
<p> </p>
<p>上記のソースを外部.jsファイルなどに付け足せばOKですが、動作はIE6、IE7、IE8、でしか確認しておりません。FireFoxはCSSにa {outline:none}を追加すると点線がなくなります。このソースは<a href="http://united-jewellery.com/" target="_blank">ユナイテッドジュエリー本店</a>で使用しております。</p>
<p>記事：清原一馬</p>
]]></content:encoded>
			<wfw:commentRss>http://team-mrc.com/archives/893/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://team-mrc.com/archives/893" />
	</item>
		<item>
		<title>便利で安全なおすすめフリーソフト特集</title>
		<link>http://team-mrc.com/archives/355</link>
		<comments>http://team-mrc.com/archives/355#comments</comments>
		<pubDate>Mon, 29 Sep 2008 03:50:06 +0000</pubDate>
		<dc:creator>MRC株式会社　清原</dc:creator>
				<category><![CDATA[お役立ち情報]]></category>
		<category><![CDATA[全ての投稿]]></category>
		<category><![CDATA[CLaunch]]></category>
		<category><![CDATA[emEditor]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[openoffice]]></category>
		<category><![CDATA[sleipnir]]></category>
		<category><![CDATA[starsuite]]></category>
		<category><![CDATA[ぴたすちお]]></category>
		<category><![CDATA[めもりーくりーなー]]></category>
		<category><![CDATA[クリップボード]]></category>
		<category><![CDATA[ショートカット]]></category>
		<category><![CDATA[フリーソフト]]></category>

		<guid isPermaLink="false">http://team-mrc.com/?p=355</guid>
		<description><![CDATA[弊社では「万が一」を想定しフリーソフトを使いたい場合は申請し許可が下りたら使用可能となります。面倒ですが・・・やはり、万が一がありますから・・・。そんな弊社で許可されているおそらく安全な？フリーソフトを一部ご紹介いたしま [...]]]></description>
			<content:encoded><![CDATA[<p>弊社では「万が一」を想定しフリーソフトを使いたい場合は申請し許可が下りたら使用可能となります。面倒ですが・・・やはり、万が一がありますから・・・。そんな弊社で許可されているおそらく安全な？フリーソフトを一部ご紹介いたします。</p>
<p>■ブラウザ系</p>
<p><a href="http://www.fenrir.co.jp/sleipnir/" target="_blank">sleipnir</a><br />
全てのPCに必ず入れさせています。(常用)</p>
<p><a href="http://mozilla.jp/firefox/" target="_blank">firefox<br />
</a>全てのPCに必ず入れさせています。</p>
<p><a href="http://www.google.com/chrome/?hl=ja" target="_blank">Google Chrome</a><br />
クロームは今後に期待。試しに入れてる人多いです。</p>
<p><a href="http://jp.opera.com/" target="_blank">Opera</a><br />
殆どのPCに入ってます。</p>
<p> </p>
<p>■必ずインストールさせるフリーソフト</p>
<p><a href="http://ja.openoffice.org/" target="_blank">openoffice</a><br />
MSoffice代わり。</p>
<p><a href="StarSuite" target="_blank">StarSuite</a><br />
openofficeがイヤな人はこちら。MSoffice代わり。</p>
<p><a href="http://jp.emurasoft.com/" target="_blank">emEditor</a><br />
メモ張代わり。</p>
<p><a href="http://www2.biglobe.ne.jp/~sota/" target="_blank">FFFTP</a><br />
ＦＴＰクライアント。</p>
<p> </p>
<p>■許可が出ている他のフリーソフト</p>
<p><a href="http://crocro.com/pc/soft/mclean/" target="_blank">めもりーくりーなー</a><br />
メモリが開放されると気持ちいいです。</p>
<p><a href="http://ara.moo.jp/pita/" target="_blank">ぴたすちお</a><br />
photoshopとの相性が悪いですが、デスクトップ上が綺麗に並び、ウィンドウ同士がピタピタくっつくのでかなりクセになります。</p>
<p><a href="http://www.ost-net.com/" target="_blank">クリップNOTE</a><br />
多機能クリップボード拡張・入力支援。定型文も保存できるので事務作業している方に大人気。</p>
<p><a href="http://hp.vector.co.jp/authors/VA018351/" target="_blank">CLaunch</a><br />
ショートカットを好きなジェスチャで呼び出せる便利なランチャ。</p>
<p> </p>
<p>・・・などなどあります。殆どがメジャーで安全なフリーソフトですが、まだ使った事がないソフトがありましたら本当に便利ですので是非一度お試しください。</p>
<p>記事：清原一馬</p>
]]></content:encoded>
			<wfw:commentRss>http://team-mrc.com/archives/355/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://team-mrc.com/archives/355" />
	</item>
	</channel>
</rss>

