<?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>miZine &#187; Browser</title>
	<atom:link href="http://mizine.de/tag/browser/feed/" rel="self" type="application/rss+xml" />
	<link>http://mizine.de</link>
	<description>Mac, Internet, SEO, eCommerce, Gadgets und Wordpress</description>
	<lastBuildDate>Wed, 23 May 2012 07:13:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<atom:link rel='hub' href='http://mizine.de/?pushpress=hub'/>
		<item>
		<title>Safari Only CSS Styles</title>
		<link>http://mizine.de/html/safari-only-css-styles/</link>
		<comments>http://mizine.de/html/safari-only-css-styles/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 09:56:30 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[only]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[webkit]]></category>
		<category><![CDATA[Weiche]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=2713</guid>
		<description><![CDATA[Browserweiche für den Safari (Webkit)]]></description>
			<content:encoded><![CDATA[<p>Styles, auf die ausschließlich der Safari (Webkit) hört kann man mit:</p>
<pre><code>@media screen
   and (-webkit-min-device-pixel-ratio:0)
{
	#id1 {margin: xx px;}
	.class1 {margin-bottom: xx px;}
}</code></pre>
<p>definieren.</p>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/safari-only-css-styles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Element Transparenz für alle Browser</title>
		<link>http://mizine.de/html/transparenz-browser/</link>
		<comments>http://mizine.de/html/transparenz-browser/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 14:36:43 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[ie5]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[opacity]]></category>
		<category><![CDATA[Transparenz]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=2644</guid>
		<description><![CDATA[Element Transparenz für alle Browser: /* ie8 */ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; /* ie 5/7*/ filter:alpha(opacity=60); /* old mozilla browser like netscape */ -moz-opacity:0.6; /* for really really old safari */ -khtml-opacity: 0.6; /* css standard, currently it works in most modern browsers like firefox, */ opacity: 0.8; Falls jQuery bereits eingebunden ist, schauen die Transparenzübergänge mittels jQuery [...]]]></description>
			<content:encoded><![CDATA[<p>Element Transparenz für alle Browser:</p>
<pre><code>/* ie8 */
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";

/* ie  5/7*/
filter:alpha(opacity=60);    

/* old mozilla browser like netscape  */
-moz-opacity:0.6; 

 /* for really really old safari */
-khtml-opacity: 0.6;    

/* css standard, currently it works in most modern browsers like firefox,  */
opacity: 0.8;    </code></pre>
<p>Falls jQuery bereits eingebunden ist, schauen die Transparenzübergänge mittels jQuery aber besser aus.</p>
<pre><code>$('#clickme').click(function() {
    $('#book').fadeTo('slow', 0.5, function() {
      // Animation complete.
    });
  });</code>
</pre>
<p>[<a href="http://api.jquery.com/fadeTo/">jQuery API</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/transparenz-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Den Browser per jQuery erkennen</title>
		<link>http://mizine.de/html/den-browser-per-jquery-erkennen/</link>
		<comments>http://mizine.de/html/den-browser-per-jquery-erkennen/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 10:01:12 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[erkennen]]></category>
		<category><![CDATA[erkennung]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[switch]]></category>

		<guid isPermaLink="false">http://www.mizine.de/allgemein/den-browser-per-jquery-erkennen/</guid>
		<description><![CDATA[Per CSS lässt sich nur der IE erkennen, alle anderen bleiben nur &#8220;alle Anderen&#8221;. Mit Hilfe von jQuery lassen sich jedoch alle Browserfamilien separat erkennen: für den Quellcode / Source gehts hier lang]]></description>
			<content:encoded><![CDATA[<p>Per CSS lässt sich nur der IE erkennen, alle anderen bleiben nur &#8220;alle Anderen&#8221;. Mit Hilfe von jQuery lassen sich jedoch alle Browserfamilien separat erkennen: </p>
<p><a href="http://www.mizine.de/wp-content/uploads/2010/03/Screenshot_2010-03-19_um_10.56.28.png" class="image-link"><img class="linked-to-original colorbox-2229" src="http://www.mizine.de/wp-content/uploads/2010/03/Screenshot_2010-03-19_um_10-thumb.56.28.png" height="415" width="380"  /></a></p>
<p>für den <a href="http://www.opensourcehunter.com/2010/02/27/26-cool-and-usefull-jquery-tips-tricks-solutions/" target="_blank">Quellcode / Source gehts hier lang</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/den-browser-per-jquery-erkennen/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS browser-size selection mit JavaScript</title>
		<link>http://mizine.de/html/css-browser-size-selection-mit-javascript/</link>
		<comments>http://mizine.de/html/css-browser-size-selection-mit-javascript/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 12:51:38 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[anpassen]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Fenster]]></category>
		<category><![CDATA[Fenstergröße]]></category>
		<category><![CDATA[Inhalt]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[selector]]></category>
		<category><![CDATA[Size]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=2103</guid>
		<description><![CDATA[Ich habe nach einer Lösung gesucht, das Design einer Webseite abhängig von der Größe des Browserfensters zu gestalten. Das Design sollte bei kleinen Browserfenstern nicht abgeschnitten aussehen und der Inhalt &#8212; meist Bilder &#8212; jeweils skaliert werden. Zur Lösung des Problems gibt es leider keine Conditional Comments, oder CSS Selektoren aber einen einfachen Trick mit [...]]]></description>
			<content:encoded><![CDATA[<p>Ich habe nach einer Lösung gesucht, das Design einer Webseite abhängig von der Größe des Browserfensters zu gestalten. Das Design sollte bei kleinen Browserfenstern nicht abgeschnitten aussehen und der Inhalt &#8212; meist Bilder &#8212; jeweils skaliert werden.</p>
<p>Zur Lösung des Problems gibt es leider keine Conditional Comments, oder CSS Selektoren aber einen einfachen Trick mit JavaScript. Mittels <code>$(window).width()</code> kann man nämlich die Fenstergröße abfragen und daraufhin das CSS passend bspw. mit <code>$("#wrapper").css("width", "820px");</code> manipulieren.</p>
<p>Also einfach im <code>&lt;head&gt;</code> ein Skript bspw. wie folgt hinzufügen, und fertig:</p>
<pre><code>&lt;script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"&gt;
&lt;/script&gt;
&lt;script type="text/javascript"&gt;
$(document).ready(function() {
  if($(window).width() &lt; 1024)
  {
    $("#wrapper").css("width", "820px");
    $("div#content").css("width", "600px");
    $("div#content img").css("max-width", "575px");
  }
  elseif ($(window).width() &lt; 800)
  {
    $("#wrapper").css("width", "520px");
    $("div#content").css("width", "300px");
    $("div#content img").css("max-width", "275px");
  }
});
&lt;/script&gt;</code></pre>
<p><span id="more-2103"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-5182098267045147";
/* 468x60, Erstellt 21.03.08 */
google_ad_slot = "7792313158";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/css-browser-size-selection-mit-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dolphin Browser für das Motorola Milestone (Android 2.0)</title>
		<link>http://mizine.de/milestone/dolphin-browser-fur-das-motorola-milestone-android-2-0/</link>
		<comments>http://mizine.de/milestone/dolphin-browser-fur-das-motorola-milestone-android-2-0/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 09:27:56 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[milestone]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[motorola]]></category>
		<category><![CDATA[multitouch]]></category>
		<category><![CDATA[s.m.a.r.t]]></category>
		<category><![CDATA[schneller]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[Tabs]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=1930</guid>
		<description><![CDATA[Der Dolphin Browser ist eine echte Alternative für den Android eigenen Browser &#8212; der bspw. leider keine Multitouch Gestures Unterstützt. Zudem ist er wesentlich schneller und fixer als der Android Browser. Im Test lagen bis zu 10s zwischen dem Dolphin und dem Android browser &#8212; bis die Webseite lesbar war. Die folgenden beiden Videos zeigen [...]]]></description>
			<content:encoded><![CDATA[<p>Der <a href="http://browser.mgeek.mobi/">Dolphin Browser</a> ist eine echte Alternative für den Android eigenen Browser &#8212; der bspw. leider keine Multitouch Gestures Unterstützt. Zudem ist er wesentlich schneller und fixer als der Android Browser. Im Test lagen bis zu 10s zwischen dem Dolphin und dem Android browser &#8212; bis die Webseite lesbar war.</p>
<p>Die folgenden beiden Videos zeigen deutlich, wo die Funktionellen Unterschiede zum Android eigenen Browser liegen:<br />
<object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/cRW0YKa6Bxo&#038;hl=de_DE&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/cRW0YKa6Bxo&#038;hl=de_DE&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object><br />
<script type="text/javascript"><!--
google_ad_client = "pub-5182098267045147";
/* 468x60, Erstellt 21.03.08 */
google_ad_slot = "7792313158";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/VCz2vB5Hju0&#038;hl=de_DE&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/VCz2vB5Hju0&#038;hl=de_DE&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/milestone/dolphin-browser-fur-das-motorola-milestone-android-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>min-height für den IE</title>
		<link>http://mizine.de/html/min-height-fur-den-ie/</link>
		<comments>http://mizine.de/html/min-height-fur-den-ie/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 13:18:56 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[min-height]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=1727</guid>
		<description><![CDATA[Wie bekommt man ohne hack die nicht vorhandene min-height CSS- Eigenschaft im IE6? Ganz einfach: .minheight-500 { min-height: 500px; height: auto !important; /* für moderne Browser */ height:500px; /*für den IE */ }]]></description>
			<content:encoded><![CDATA[<p>Wie bekommt man ohne hack die nicht vorhandene min-height CSS- Eigenschaft im IE6?<br />
Ganz einfach:</p>
<pre><code>.minheight-500 {
   min-height: 500px;
   height: auto !important; /* für moderne Browser */
   height:500px;  /*für den IE */
}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/min-height-fur-den-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browserswitch &#8212; zwischen IE und FF unterscheiden</title>
		<link>http://mizine.de/html/browserswitch-zwischen-ie-und-ff-unterscheiden/</link>
		<comments>http://mizine.de/html/browserswitch-zwischen-ie-und-ff-unterscheiden/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 12:55:34 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[Weiche]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=817</guid>
		<description><![CDATA[Die Lösung heißt: conditional comments Normal comment: &#60;!&#45;&#45; Comment text &#45;&#45;&#62; Conditional comment: &#60;!&#45;&#45;[If expression]&#62; HTML &#60;![endif]&#45;&#45;&#62; Für den einfachsten Switch bedeutet dies: &#60;!&#45;&#45;[If IE]&#62; HTML &#60;![endif]&#45;&#45;&#62; Hier wird jeder IE (ab v5) den eingeklammerten HTML code ausführen Die umgekehrte Richtung geht leider nur mit einem nicht XHTML validen code, nämlich: &#60;!&#45;&#45;[if !IE]&#62;&#60;!&#45;&#45;&#62; HTML &#60;!&#45;&#45;&#60;![endif]&#45;&#45;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/14678786@N00/3046057117" title="wanted: dead"><img class="colorbox-817"  src="http://farm4.static.flickr.com/3137/3046057117_09db9ee7b1_s.jpg" style="float:left; margin:0 10px 5px 0;" /></a>Die Lösung heißt: <em>conditional comments</em></p>
<p>Normal comment: &lt;!&#45;&#45; Comment text &#45;&#45;&gt;<br />
Conditional comment: &lt;!&#45;&#45;[If <var>expression</var>]&gt; HTML &lt;![endif]&#45;&#45;&gt;</p>
<p>Für den einfachsten Switch bedeutet dies:<br />
&lt;!&#45;&#45;[If IE]&gt; HTML &lt;![endif]&#45;&#45;&gt;<br />
Hier wird jeder IE (ab v5) den eingeklammerten HTML code ausführen</p>
<p>Die umgekehrte Richtung geht leider nur mit einem nicht XHTML validen code, nämlich:<br />
&lt;!&#45;&#45;[if !IE]&gt;<marker>&lt;!&#45;&#45;&gt;</marker> HTML <marker>&lt;!&#45;&#45;</marker>&lt;![endif]&#45;&#45;&gt;</p>
<p>Das Ganze geht auch komplexer:</p>
<ul style="list-style-type:circle">
<li><b>! (negation)</b><br />
Use the negation to select all versions except the one specified, e.g.<br />
<code class="inline">[If !IE 6]</code> will select IE 5, 5.5 and 7.</li>
<li><b>lt (less than)</b><br />
Select any versions less than the one specified, e.g. <code class="inline">[If lt IE 6]</code> will select IE 5 and 5.5.</li>
<li><b>lte (less than or equal)</b><br />
e.g. <code class="inline">[If lte IE 6]</code> will select IE 5, 5.5 and 6.</li>
<li><b>gt (greater than)</b><br />
Select any versions greater than the one specified, e.g. <code class="inline">[If gt IE 6]</code> will select IE 7 (and any later versions that may appear).</li>
<li><b>gte (greater than or equal)</b><br />
e.g. <code class="inline">[If gte IE 6]</code> will select IE 6 and 7 (and later).</li>
</ul>
<p>Für weitere Informationen [<a href="http://www.unintentionallyblank.co.uk/2006/09/19/if-internet-explorer-then-do-something-else-a-how-to/">Quelle</a>]<br />
<span id="more-817"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-5182098267045147";
/* 468x60, Erstellt 21.03.08 */
google_ad_slot = "7792313158";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/browserswitch-zwischen-ie-und-ff-unterscheiden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

