<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Posteet: ie,css</title> 
    <link>http://www.posteet.com/</link> 
    <description>Recent posteets posted to Posteet</description>
    <ttl>60</ttl>

    
    <item>
        <title>Scrolling Render for Internet Explorer with CSS</title>
        <link>http://www.posteet.com/view/766</link>
        <description>
        <![CDATA[<pre>html {
  background : url(null) fixed no-repeat;
}</pre> <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/ie">[ie]</a>  <a href="http://www.posteet.com/tags/scrolling">[scrolling]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Mon, 18 Feb 2008 08:57:04 +0000</pubDate>

            <category>css</category>
            <category>ie</category>
            <category>scrolling</category>
    
    </item>

  
    <item>
        <title>Transparence IE png provenant de feuille de style CSS</title>
        <link>http://www.posteet.com/view/368</link>
        <description>
        <![CDATA[<pre>/* A modifier dans la page CSS*/
/* A la place de :*/
background-image: url(&quot;image.png&quot;);

/* remplacer par :*/
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop src='image.png');
background-image: none;

/* !ATTENTION! Probleme sur les liens, pour resoudre ajouter: */

a, input
{
position: relative;
z-index: 1;
}</pre> <a href="http://www.posteet.com/tags/balise">[balise]</a>  <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/IE">[IE]</a>  <a href="http://www.posteet.com/tags/internet explorer">[internet explorer]</a>  <a href="http://www.posteet.com/tags/png">[png]</a>  <a href="http://www.posteet.com/tags/transparence">[transparence]</a> ]]>        </description>
        <dc:creator>moifort</dc:creator>
        <pubDate>Mon, 12 Nov 2007 11:58:04 +0000</pubDate>

            <category>balise</category>
            <category>css</category>
            <category>IE</category>
            <category>internet explorer</category>
            <category>png</category>
            <category>transparence</category>
    
    </item>

  
    <item>
        <title>Transparence sous IE png provenant de balises &lt;img&gt;</title>
        <link>http://www.posteet.com/view/367</link>
        <description>
        <![CDATA[<pre>/* A ajouter entre les balise &lt;head&gt; */
&lt;!--[if lt IE 7]&gt;
&lt;script defer type=&quot;text/javascript&quot; src=&quot;pngfix.js&quot;&gt;&lt;/script&gt;
&lt;![endif]--&gt;</pre> <a href="http://www.posteet.com/tags/&lt;img&gt;">[&lt;img&gt;]</a>  <a href="http://www.posteet.com/tags/balise">[balise]</a>  <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/html">[html]</a>  <a href="http://www.posteet.com/tags/IE">[IE]</a>  <a href="http://www.posteet.com/tags/internet explorer">[internet explorer]</a>  <a href="http://www.posteet.com/tags/png">[png]</a>  <a href="http://www.posteet.com/tags/transparence">[transparence]</a> ]]>        </description>
        <dc:creator>moifort</dc:creator>
        <pubDate>Mon, 12 Nov 2007 11:45:50 +0000</pubDate>

            <category>&lt;img&gt;</category>
            <category>balise</category>
            <category>css</category>
            <category>html</category>
            <category>IE</category>
            <category>internet explorer</category>
            <category>png</category>
            <category>transparence</category>
    
    </item>

  
    <item>
        <title>Hacks CSS pour min-width, max-width, min-height, max-height pour IE</title>
        <link>http://www.posteet.com/view/354</link>
        <description>
        <![CDATA[<pre>// max-width
// Ce code dit que si la largeur du document est supérieure à 1000px, alors il sera forcé à 1000px, sinon il restera à &quot;auto&quot;. Si javascript est désactivé alors la largeur sera de 770px;
&lt;!--[if lt IE 7]&gt;
&lt;style type=&quot;text/css&quot;&gt;
div {
width:770px;
width:expression(document.body.clientWidth &gt;= 1000? &quot;1000px&quot;: &quot;auto&quot; );
}
&lt;/style&gt;
&lt;![endif]--&gt;

// min-width
// Le code dit que si la largeur du document est inférieure à 600px, alors elle est forcée à 600px (il y a donc une apparition des barres d'ascenseur horizontales au seuil de 600px). Si JavaScript n'est pas actif, alors la largeur est fixée à 770px.
&lt;!--[if lt IE 7]&gt;
&lt;style type=&quot;text/css&quot;&gt;
div {
width:770px;
width:expression(document.body.clientWidth &lt;= 600? &quot;600px&quot;: &quot;auto&quot; );
}
&lt;/style&gt;
&lt;![endif]--&gt;

// min-width et max-width en meme temps
&lt;!--[if lt IE 7]&gt;
&lt;style type=&quot;text/css&quot;&gt;
div {
width:770px;
width: expression(document.body.clientWidth &lt;= 600? &quot;600px&quot; : document.body.clientWidth &gt;= 1000? &quot;1000px&quot; : &quot;auto&quot;);
}
&lt;/style&gt;
&lt;![endif]--&gt;

// max-height
// Le code dit que si la largeur du document est inférieure à 600px, alors elle est forcée à 600px (il y'a donc une apparition des barres d'ascenseur horizontales au seuil de 600px).
&lt;!--[if lt IE 7]&gt;
&lt;style type=&quot;text/css&quot;&gt;
div {
height: 500px;
overflow:hidden;
height:expression(
this.scrollHeight &gt; 800? &quot;800px&quot; : &quot;auto&quot; );
}
&lt;/style&gt;
&lt;![endif]--&gt;</pre> <a href="http://www.posteet.com/tags/css">[css]</a>  <a href="http://www.posteet.com/tags/hacks">[hacks]</a>  <a href="http://www.posteet.com/tags/ie">[ie]</a>  <a href="http://www.posteet.com/tags/max-height">[max-height]</a>  <a href="http://www.posteet.com/tags/max-width">[max-width]</a>  <a href="http://www.posteet.com/tags/min-height">[min-height]</a>  <a href="http://www.posteet.com/tags/min-width">[min-width]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Sat, 10 Nov 2007 13:50:06 +0000</pubDate>

            <category>css</category>
            <category>hacks</category>
            <category>ie</category>
            <category>max-height</category>
            <category>max-width</category>
            <category>min-height</category>
            <category>min-width</category>
    
    </item>


</channel>
</rss>
