<?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>Adolfo Abegg &#187; CSS</title>
	<atom:link href="http://www.adolfoabegg.com/category/css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.adolfoabegg.com</link>
	<description>Analista - Programador</description>
	<lastBuildDate>Mon, 25 Jan 2010 09:10:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Solución para position:fixed en IE (Internet Explorer)</title>
		<link>http://www.adolfoabegg.com/solucion-para-positionfixed-en-ie-internet-explorer</link>
		<comments>http://www.adolfoabegg.com/solucion-para-positionfixed-en-ie-internet-explorer#comments</comments>
		<pubDate>Sun, 13 Apr 2008 03:46:54 +0000</pubDate>
		<dc:creator>Adolfo Abegg</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[position:fixed]]></category>
		<category><![CDATA[Solución CSS]]></category>

		<guid isPermaLink="false">http://www.adolfoabegg.com/2008/04/12/solucion-para-positionfixed-en-ie-internet-explorer.html</guid>
		<description><![CDATA[Internet Explorer simplemente no interpreta el valor fixed para la propiedad position  (position :fixed;)
Hay muchas soluciones que utilizan javascript, gracias a Google, encontré esta que solo utiliza CSS:

@media screen {

 * html,        * html body {

               [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer simplemente no interpreta el valor <strong>fixed </strong>para la propiedad <strong>position</strong>  (position :fixed;)</p>
<p>Hay muchas soluciones que <a href="http://www.doxdesk.com/software/js/fixed.html" title="solución Internet Explorer position:fixed utilizando javascript" target="_blank">utilizan javascript</a>, gracias a Google, encontré esta que solo utiliza CSS:</p>
<pre lineno="1" lang="css">
@media screen {

 * html,        * html body {

                    overflow-y: hidden!important;

                    height: 100%;

                    margin: 0;

                    padding: 0;

}

* html #iefix {

                      height: 100%;

                      overflow-y: scroll;

                      position: relative;

           }

* html div#fixme,

           * html div#fixme-bottom,

           * html div#fixme-middle

           {

                      position: absolute;

           }

}</pre>
<p>Para una descripción completa de la solución, <a href="http://www.gunlaug.no/contents/wd_additions_17.html" title="solución Internet Explorer position:fixed utilizando CSS" target="_blank">visita esta página</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adolfoabegg.com/solucion-para-positionfixed-en-ie-internet-explorer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
