<?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>Sentido Web &#187; css</title>
	<atom:link href="http://sentidoweb.com/category/css/feed" rel="self" type="application/rss+xml" />
	<link>http://sentidoweb.com</link>
	<description>Desarrollo web, HTML, CSS, Javascript, PHP, MySQL</description>
	<lastBuildDate>Mon, 16 Jan 2012 10:16:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Tres grandes tutoriales sobre HTML5</title>
		<link>http://sentidoweb.com/2011/03/08/tres-grandes-tutoriales-sobre-html5.php</link>
		<comments>http://sentidoweb.com/2011/03/08/tres-grandes-tutoriales-sobre-html5.php#comments</comments>
		<pubDate>Tue, 08 Mar 2011 12:28:08 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://sentidoweb.com/?p=2690</guid>
		<description><![CDATA[HTML5 Rocks ha publicado 3 tutoriales muy interesantes sobre desarrollo de HTML5. El primero de ellos trata sobre cómo mejorar el rendimiento de las aplicaciones en HTML5, a parte de alguna que es puramente Javascript y no HTML5 (como guardar en una variable un elemento DOM y no buscarlo cada vez que vayamos usarlo), la [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 Rocks ha publicado 3 tutoriales muy interesantes sobre desarrollo de HTML5. </p>
<p>El primero de ellos trata sobre cómo mejorar el rendimiento de las aplicaciones en HTML5, a parte de alguna que es puramente Javascript y no HTML5 (como guardar en una variable un elemento DOM y no buscarlo cada vez que vayamos usarlo), la mayoría de ellas trata sobre el uso de transiciones CSS3 por parte del navegador y no mediante el uso de Javascript, ya que así sería el navegador el que se encargue de ello y pueda optimizar su ejecución, por ejemplo:</p>
<pre><code><pre class="javascript">  <span style="color: #003366; font-weight: bold;">var</span> elem = evt.<span style="color: #006600;">target</span>;
  <span style="color: #009900; font-style: italic;">// Modernizr es una librer&Atilde;&shy;a que nos indica que elementos CSS3 y HTML5 dispone el navegador</span>
  <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #66cc66;">&#40;</span>Modernizr.<span style="color: #006600;">csstransforms</span> &amp;&amp; Modernizr.<span style="color: #006600;">csstransitions</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
    <span style="color: #009900; font-style: italic;">// Mediante CSS3</span>
    elem.<span style="color: #006600;">style</span>.<span style="color: #006600;">transition</span> = <span style="color: #3366CC;">'all 3s ease-out'</span>;
    elem.<span style="color: #006600;">style</span>.<span style="color: #006600;">transform</span> = <span style="color: #3366CC;">'translateX(600px)'</span>;
  <span style="color: #66cc66;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #66cc66;">&#123;</span>
    <span style="color: #009900; font-style: italic;">// Mediante jQuery</span>
    jQuery<span style="color: #66cc66;">&#40;</span>elem<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">animate</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#123;</span> <span style="color: #3366CC;">'left'</span>: <span style="color: #3366CC;">'600px'</span><span style="color: #66cc66;">&#125;</span>, <span style="color: #CC0000;">3000</span><span style="color: #66cc66;">&#41;</span>;
  <span style="color: #66cc66;">&#125;</span></pre></code></pre>
<p>El siguiente tutorial nos indica cómo meterle efectos CSS3 a nuestros textos, y la verdad es que alguno está muy currado. Claro que yo no soy muy partidario de usarlos según que tipo de publicación (se puede abusar mucho de ello), pero la verdad es que nos puede venir muy bien.</p>
<img src="http://sentidoweb.com/wp-content/uploads/2011/03/pastedGraphic_7.png" alt="" title="pastedGraphic_7" width="555" height="185" class="center alignnone size-full wp-image-2691" />
<p>Y por último consejos HTML5 y CSS para convertir nuestra web a formato adaptado para móviles. Algunos trucos de rencimiento como el uso del almacenamiento local y algo bastante interesante cómo indicar la orientación o el viewport de la página:</p>
<pre><code><pre class="xml"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">"viewport"</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">"width=device-width, initial-scale=1.0, user-scalable=yes"</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;meta</span> <span style="color: #000066;">name</span>=viewport <span style="color: #000066;">content</span>=<span style="color: #ff0000;">"width=device-width, initial-scale=1.0, minimum-scale=0.5 maximum-scale=1.0"</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;meta</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">"viewport"</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">"target-densitydpi=device-dpi"</span><span style="font-weight: bold; color: black;">&gt;</span></span></pre></code></pre>
<p><a href="http://www.html5rocks.com/tutorials/speed/html5/">Improving the Performance of your HTML5 App</a></p>
<p><a href="http://www.html5rocks.com/tutorials/canvas/texteffects/">Typographic effects in canvas</a></p>
<p><a href="http://www.html5rocks.com/mobile/mobifying.html">&#8220;Mobifying&#8221; Your HTML5 Site</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2011/03/08/tres-grandes-tutoriales-sobre-html5.php/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Transparent Borders with background-clip</title>
		<link>http://sentidoweb.com/2010/09/17/transparent-borders-with%c2%a0background-clip.php</link>
		<comments>http://sentidoweb.com/2010/09/17/transparent-borders-with%c2%a0background-clip.php#comments</comments>
		<pubDate>Fri, 17 Sep 2010 18:04:31 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[transparent]]></category>

		<guid isPermaLink="false">http://css-tricks.com/transparent-borders-with-background-clip/</guid>
		<description><![CDATA[Have you ever seen an element on a page with transparent borders? I think Facebook originally popularized it giving birth to lightbox plugins like Facebox. I don’t think Facebook sports the look anymore, but it’s still rather neat. You might think it would be as simple as this:#lightbox { background: white; border: 20px solid rgba(0,0,0,0.3); [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever seen an element on a page with transparent borders? I think Facebook originally popularized it giving birth to lightbox plugins like Facebox. I don’t think Facebook sports the look anymore, but it’s still rather neat. You might think it would be as simple as this:#lightbox { background: white; border: 20px solid rgba(0,0,0,0.3); }Howe &#8230;</p>
<p><a href="http://css-tricks.com/transparent-borders-with-background-clip/" title="Transparent Borders with background-clip">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/09/17/transparent-borders-with%c2%a0background-clip.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Stroke to Web Text</title>
		<link>http://sentidoweb.com/2010/09/13/adding-stroke-to-web%c2%a0text.php</link>
		<comments>http://sentidoweb.com/2010/09/13/adding-stroke-to-web%c2%a0text.php#comments</comments>
		<pubDate>Sun, 12 Sep 2010 22:17:43 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[texto]]></category>

		<guid isPermaLink="false">http://css-tricks.com/adding-stroke-to-web-text/</guid>
		<description><![CDATA[Fonts on the web are essentially vector based graphics. That’s why you can display them at 12px or 120px and they remain crisp and relatively sharp-edged. Vector means that their shape is determined by points and mathematics to describe the shape, rather than actual pixel data. Because they are vector, it would make sense if [...]]]></description>
			<content:encoded><![CDATA[<p>Fonts on the web are essentially vector based graphics. That’s why you can display them at 12px or 120px and they remain crisp and relatively sharp-edged. Vector means that their shape is determined by points and mathematics to describe the shape, rather than actual pixel data. Because they are vector, it would make sense if we could do things that &#8230;</p>
<p><a href="http://css-tricks.com/adding-stroke-to-web-text/" title="Adding Stroke to Web Text">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/09/13/adding-stroke-to-web%c2%a0text.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BonBon Buttons</title>
		<link>http://sentidoweb.com/2010/09/02/bonbon%c2%a0buttons.php</link>
		<comments>http://sentidoweb.com/2010/09/02/bonbon%c2%a0buttons.php#comments</comments>
		<pubDate>Thu, 02 Sep 2010 20:59:20 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[botones]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://lab.simurai.com/css/buttons/</guid>
		<description><![CDATA[These are way above and beyond the level of any other “CSS3 buttons” I’ve seen. Multiple backgrounds combining gradients and images, uneven border-radius, pseudo elements, HSL coloring, @font-face icons, transitions, box shadows, text shadows, hover and active states… the list goes on. Every trick in the book masterfully employed.They make my buttons &#8230; Post original]]></description>
			<content:encoded><![CDATA[<p>These are way above and beyond the level of any other “CSS3 buttons” I’ve seen. Multiple backgrounds combining gradients and images, uneven border-radius, pseudo elements, HSL coloring, @font-face icons, transitions, box shadows, text shadows, hover and active states… the list goes on. Every trick in the book masterfully employed.They make my buttons &#8230;</p>
<p><a href="http://lab.simurai.com/css/buttons/" title="BonBon Buttons">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/09/02/bonbon%c2%a0buttons.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stylize Radio Button &amp; Checkbox with ezMark jQuery Plugin</title>
		<link>http://sentidoweb.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin.php</link>
		<comments>http://sentidoweb.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin.php#comments</comments>
		<pubDate>Thu, 19 Aug 2010 07:06:46 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[checkbox]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://www.webappers.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin/</guid>
		<description><![CDATA[ezMark is a jQuery Plugin that allows you to stylize Radio button and Checkbox easily. Its very small (minified version is ~1.5kb) compared to other similar scripts. It has been tested and works on all major browsers (IE 6/7/8, Firefox, Safari, Chrome) and it gracefully degrades.To customize the default checkbox/radiobutton image, simply change the &#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>ezMark is a jQuery Plugin that allows you to stylize Radio button and Checkbox easily. Its very small (minified version is ~1.5kb) compared to other similar scripts. It has been tested and works on all major browsers (IE 6/7/8, Firefox, Safari, Chrome) and it gracefully degrades.To customize the default checkbox/radiobutton image, simply change the &#8230;</p>
<p><a href="http://www.webappers.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin/" title="Stylize Radio Button &amp; Checkbox with ezMark jQuery Plugin">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mastering the 960 Grid System</title>
		<link>http://sentidoweb.com/2010/08/19/mastering-the-960-grid-system.php</link>
		<comments>http://sentidoweb.com/2010/08/19/mastering-the-960-grid-system.php#comments</comments>
		<pubDate>Wed, 18 Aug 2010 23:03:21 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[grid]]></category>

		<guid isPermaLink="false">http://net.tutsplus.com/tutorials/html-css-techniques/mastering-the-960-grid-system/</guid>
		<description><![CDATA[We’re already familiar with the 12- and 16-column variants of 960.gs, but did you know that a 24-column alternative exists too? In this article, you’ll master the 960 grid system by dissecting the 24-column version demo. If you’ve only used 960gs before for Photoshop mockups, consider this your lucky day. By the end of this [...]]]></description>
			<content:encoded><![CDATA[<p>We’re already familiar with the 12- and 16-column variants of 960.gs, but did you know that a 24-column alternative exists too? In this article, you’ll master the 960 grid system by dissecting the 24-column version demo. If you’ve only used 960gs before for Photoshop mockups, consider this your lucky day. By the end of this article, you’ll be able  &#8230;</p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/mastering-the-960-grid-system/" title="Mastering the 960 Grid System">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/19/mastering-the-960-grid-system.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permitir que IE aplique estilos a las etiquetas HTML5</title>
		<link>http://sentidoweb.com/2010/08/18/permitir-que-ie-aplique-estilos-a-las-etiquetas-html5.php</link>
		<comments>http://sentidoweb.com/2010/08/18/permitir-que-ie-aplique-estilos-a-las-etiquetas-html5.php#comments</comments>
		<pubDate>Wed, 18 Aug 2010 14:57:41 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://sentidoweb.com/?p=2512</guid>
		<description><![CDATA[El que los navegadores antiguos o IE no acepten etiquetas HTML5 no suele ser un problema a la hora de mostrarlas, el problema viene a la hora de aplicar estilos e IE que no le aplica los estilos, ya que IE ignora las etiquetas. header { /* sus estilos */ } section { /* sus [...]]]></description>
			<content:encoded><![CDATA[<p>El que los navegadores antiguos o IE no acepten etiquetas HTML5 no suele ser un problema a la hora de mostrarlas, el problema viene a la hora de aplicar estilos e IE que no le aplica los estilos, ya que IE ignora las etiquetas.</p>
<pre><code><pre class="styles">header { /* sus estilos */ }
section { /* sus estilos */ }
footer  { /* sus estilos */ }</pre></code></pre>
<p>Para ponerle solución, se puede crear un elemento dinamicamente antes de aplicar los estilos, y por arte de magia (o desesperación) tendrá los estilos al elemento.</p>
<pre><code><pre class="javascript">&lt;!--<span style="color: #66cc66;">&#91;</span><span style="color: #000066; font-weight: bold;">if</span> lt IE <span style="color: #CC0000;">9</span><span style="color: #66cc66;">&#93;</span>&gt;
&lt;script src=<span style="color: #3366CC;">"http://html5shiv.googlecode.com/svn/trunk/html5.js"</span>&gt;&lt;/script&gt;
&lt;!<span style="color: #66cc66;">&#91;</span>endif<span style="color: #66cc66;">&#93;</span>--&gt;</pre></code></pre>
<p><a href="http://code.google.com/p/html5shiv/">html5shiv</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/18/permitir-que-ie-aplique-estilos-a-las-etiquetas-html5.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frame: Modular CSS Framework</title>
		<link>http://sentidoweb.com/2010/08/16/frame-modular-css-framework.php</link>
		<comments>http://sentidoweb.com/2010/08/16/frame-modular-css-framework.php#comments</comments>
		<pubDate>Mon, 16 Aug 2010 11:04:39 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://www.dzone.com/links/rss/frame_modular_css_framework.html</guid>
		<description><![CDATA[Frame is a modular CSS framework that supports: Layout, Typography, Forms, Code, Table, Reset, and Print styling. It is HTML5 compatible, and provides default styles and support for HTML5 elements. Frame is accompanied by an online tool that allows you to easily generate your own build (in case you don’t need to use all the [...]]]></description>
			<content:encoded><![CDATA[<p>Frame is a modular CSS framework that supports: Layout, Typography, Forms, Code, Table, Reset, and Print styling. It is HTML5 compatible, and provides default styles and support for HTML5 elements. Frame is accompanied by an online tool that allows you to easily generate your own build (in case you don’t need to use all the features). &#8230;</p>
<p><a href="http://www.dzone.com/links/rss/frame_modular_css_framework.html" title="Frame: Modular CSS Framework">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/16/frame-modular-css-framework.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Peculiar: iconos realizados con CSS</title>
		<link>http://sentidoweb.com/2010/08/11/peculiar-iconos-realizados-con-css.php</link>
		<comments>http://sentidoweb.com/2010/08/11/peculiar-iconos-realizados-con-css.php#comments</comments>
		<pubDate>Wed, 11 Aug 2010 07:02:02 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[iconos]]></category>

		<guid isPermaLink="false">http://www.webintenta.com/Peculiar-iconos-realizados-con-CSS.html</guid>
		<description><![CDATA[Peculiar es un paquete de iconos realizado sólo en CSS. Ha sido creado pensando en sitios y aplicaciones web que dependan de un número muy reducido de peticiones HTTP o que no necesiten o no puedan utilizar ninguna imagen. El paquete contiene 45 pict &#8230; Post original]]></description>
			<content:encoded><![CDATA[<p>Peculiar es un paquete de iconos realizado sólo en CSS. Ha sido creado pensando en sitios y aplicaciones web que dependan de un número muy reducido de peticiones HTTP o que no necesiten o no puedan utilizar ninguna imagen. El paquete contiene 45 pict &#8230;</p>
<p><a title="Peculiar: iconos realizados con CSS" href="http://www.webintenta.com/Peculiar-iconos-realizados-con-CSS.html">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/11/peculiar-iconos-realizados-con-css.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Boilerplate</title>
		<link>http://sentidoweb.com/2010/08/11/html5-boilerplate.php</link>
		<comments>http://sentidoweb.com/2010/08/11/html5-boilerplate.php#comments</comments>
		<pubDate>Wed, 11 Aug 2010 06:44:23 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://feedproxy.google.com/~r/ScriptAndStyle/~3/dNxSqopTPxk/html5-boilerplate</guid>
		<description><![CDATA[HTML5 Boilerplate is the professional badass’s base HTML/CSS/JS template for a fast, robust and future-proof site. After more than two years in iterative development, you get the best of the best practices baked in: cross-browser normalization, perfo &#8230; Post original]]></description>
			<content:encoded><![CDATA[HTML5 Boilerplate is the professional badass’s base HTML/CSS/JS template for a fast, robust and future-proof site. After more than two years in iterative development, you get the best of the best practices baked in: cross-browser normalization, perfo &#8230;

<a title="HTML5 Boilerplate" href="http://feedproxy.google.com/~r/ScriptAndStyle/~3/dNxSqopTPxk/html5-boilerplate">Post original</a>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/11/html5-boilerplate.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

