<?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>vloox &#187; css</title>
	<atom:link href="http://vloox.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://vloox.com</link>
	<description>el que no arriesga no pierde</description>
	<lastBuildDate>Sun, 01 Jan 2012 20:05:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Grid framework CSS de 1 línea</title>
		<link>http://vloox.com/297/grid-framework-css-de-1-linea/</link>
		<comments>http://vloox.com/297/grid-framework-css-de-1-linea/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 03:59:26 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[grillas]]></category>
		<category><![CDATA[layouts]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=297</guid>
		<description><![CDATA[La idea de 1 line CSS Grid Framework es poder crear un layout CSS basado en grillas con solo una línea de código CSS: .dp50 {width:50%; float:left; display: inline; *margin-right:-1px; } Este sistema parte del principio de que cada columna puede dividirse en 2, por lo que pueden hacerse layouts de 2, 4, 8, 16&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>La idea de <a href="http://www.vcarrer.com/2009/06/1-line-css-grid-framework.html">1 line CSS Grid Framework</a> es poder crear un <strong>layout CSS basado en grillas</strong> con solo una línea de código CSS:</p>
<pre class="brush: css; title: ;">
.dp50 {width:50%;  float:left;  display: inline;  *margin-right:-1px; }
</pre>
<p>Este sistema parte del principio de que cada columna puede dividirse en 2, por lo que pueden hacerse layouts de 2, 4, 8, 16&#8230; columnas. Obteniendo este resultado:</p>
<p><a href="http://www.allapis.com/1-Line-CSS-Framework/1-line-css-framework-1.html"><img class="alignnone size-full wp-image-298" title="1-line-css-framework" src="http://vloox.com/wp-content/uploads/2009/07/1-line-css-framework.png" alt="1-line-css-framework" width="400" height="256" /></a></p>
<p>Funciona con px, em y porcentajes. Es compatible con todos los navagadores, hasta IE5.5. El autor no lo recomienda para producción, si no más bien como una demostración de lo que puede hacerse con solo una línea de CSS.</p>
<p>Otra opción un poco más completa pero ultra pequeña, del mismo autor, es <a href="http://code.google.com/p/malo/">Malo</a>, un  framework CSS de 8 líneas. Y para el que lo anterior no le alcance tiene <a href="http://code.google.com/p/emastic/">Emastic</a> y <a href="http://code.google.com/p/the-golden-grid/">The Golden Grid</a>.</p>
<p>Por mi parte, hice un <a href="http://vloox.com/ejemplos/layout-fluido-3-columnas.html">layout fluido clásico de blog de 3 columnas</a>: header, contenido, dos sidebars y footer.</p>
<p>En conclusión,  <a href="http://www.vcarrer.com/2009/06/1-line-css-grid-framework.html">1 line CSS Grid Framework</a> es muy fácil de usar y puede servir para crear sistemas de grillas simples.</p>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/297/grid-framework-css-de-1-linea/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Diferencias entre los tags b, i, strong y em</title>
		<link>http://vloox.com/251/diferencias-entre-los-tags-b-i-strong-y-em/</link>
		<comments>http://vloox.com/251/diferencias-entre-los-tags-b-i-strong-y-em/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 04:25:41 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=251</guid>
		<description><![CDATA[Ya se discutió (y bien) este tema en otros lugares, pero a raíz de un post en Kabytes y viendo que no está muy clara cual es la diferencia entre los tags  &#60;b&#62; vs. &#60;strong&#62; y &#60;i&#62; vs. &#60;em&#62; voy a tratar de explicarla. Aclaro que ésto es de interés solo para los Talibanes de [...]]]></description>
			<content:encoded><![CDATA[<p>Ya se discutió (y bien) este tema en otros lugares, pero a raíz de <a href="http://www.kabytes.com/desarrollo/10-errores-usuales-en-html-que-no-debes-cometer/">un post en Kabytes</a> y viendo que no está muy clara cual es la diferencia entre los tags  &lt;b&gt; vs. &lt;strong&gt; y &lt;i&gt; vs. &lt;em&gt; voy a tratar de explicarla. Aclaro que ésto es de interés solo para los <em>Talibanes de la Accesibilidad</em> y los <em>Maestros del SEO</em>.</p>
<p>Supongamos que quiero poner un texto en negrita, ¿utilizo &lt;b&gt; o &lt;strong&gt;? La respuesta es ninguno de los dos, hay que usar la propiedad CSS <strong>font-weight</strong>. Veamos:</p>
<p>El código XHTML:</p>
<pre class="brush: xml; title: ;">
&lt;p&gt;Este texto lo quiero en negrita&lt;/p&gt;
</pre>
<p>y el código CSS correspondiente:</p>
<pre class="brush: css; title: ;">
p { font-weight: bold; }
</pre>
<p>El caso de la itálica es similar, debemos usar la propiedad CSS font-style:</p>
<pre class="brush: css; title: ;">
p { font-style: italic; }
</pre>
<p>Entonces, ¿para qué sirven &lt;i&gt; y &lt;b&gt;? Estos tags sirven para dar formato, pero como enseña el <em>Tao del CSS</em> el formato debe darse a través de las hojas de estilo, por lo que en su lugar hay que usar las propiedades CSS <strong>font-style</strong> y <strong>font-weight</strong>.</p>
<p>En cuanto a &lt;em&gt; (emphasis) y &lt;strong&gt; (strong emphasis) son elementos estructurales que deben utilizarse en sentido semántico, da la casualidad (o no) que por defecto los navegadores los muestran, respectivamente, como itálica y negrita. Un <em>Talibán de la Accesibilidad</em> nos dirá que un texto con em será leído por un lector de pantalla con más énfasis, y un <em>Maestro del SEO</em> dirá que si ponemos strong a las keywords, Google indexará nuestra página en primer lugar.</p>
<p>Espero que se haya entendido la diferencia. Yo por mi parte no hago mucho caso de todo lo anterior y uso lo que más cómodo me queda.</p>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/251/diferencias-entre-los-tags-b-i-strong-y-em/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tutoriales y consejos para diseñadores web</title>
		<link>http://vloox.com/163/tutoriales-y-consejos-para-disenadores-web/</link>
		<comments>http://vloox.com/163/tutoriales-y-consejos-para-disenadores-web/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 05:04:33 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Diseño]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=163</guid>
		<description><![CDATA[8 Common Sense Tips for Creating Clean Designs: No hace falta haber estudiado diseño para crear buenos websites, ¡solo hay que usar el sentido común! How a Simple Layout Can Be Mixed ‘n’ Matched with Patterns, Photos and Backgrounds: Cómo un layout simple puede transformarse agregando imágenes y colores, resultando en un diseño profesional. Five [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://rubiqube.com/8-common-sense-tips-for-creating-clean-designs/">8 Common Sense Tips for Creating Clean Designs</a>: No hace falta haber estudiado diseño para crear buenos websites, ¡solo hay que usar el sentido común!</li>
<li><a href="http://psdtuts.com/tutorials/interface-tutorials/how-a-simple-layout-can-be-mixed-n-matched-with-patterns-photos-and-backgrounds/">How a Simple Layout Can Be Mixed ‘n’ Matched with Patterns, Photos and Backgrounds</a>: Cómo un layout simple puede transformarse agregando imágenes y colores, resultando en un diseño profesional.</li>
<li><a href="http://psdtuts.com/tutorials/interface-tutorials/five-looks-one-layout-how-to-develop-a-library-of-web-design-styles-at-your-fingertips/">Five Looks, One Layout: How to Develop a Library of Web Design Styles at Your Fingertips</a>: Cómo desarrollar cinco estilos distintos para un único layout.</li>
<li><a href="http://www.sohtanaka.com/web-design/styling-input-search-form-css/">Styling Your Search Form with CSS</a>: Agregando estilo al form de búsqueda con CSS.</li>
<li><a href="http://www.sohtanaka.com/web-design/spice-up-your-images-with-css/">5 Ways to Spice up Your Images with CSS</a>: 5 maneras para <em>condimentar</em> tus imágenes con CSS.</li>
<li><a href="http://www.sohtanaka.com/web-design/liquid-fixed-two-column-layouts/">Liquid + Fixed Two Column Lists with CSS</a>: Lista de dos columnas, una fluída y la otra fija, con CSS.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/163/tutoriales-y-consejos-para-disenadores-web/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Layouts CSS y XHTML</title>
		<link>http://vloox.com/162/layouts-css-y-xhtml/</link>
		<comments>http://vloox.com/162/layouts-css-y-xhtml/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 02:24:36 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Recursos]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[layouts]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=162</guid>
		<description><![CDATA[Hay muchos sitios con layouts CSS, pero Code Sucks es el mejor que he visto. El código XHTML y CSS es claro, simple y muy fácil de entender para modificarlo. Hay 95 diseños distintos para elegir: 1 columna, 2 columnas, 3 columnas, etc. Los layouts de Code Sucks son perfectos para usar como base en [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm4.static.flickr.com/3045/3083848926_a040abe9b0_o.jpg" alt="code sucks" width="414" height="98" /><br />
Hay muchos sitios con layouts CSS, pero <a href="http://www.code-sucks.com/css%20layouts/">Code Sucks</a> es el mejor que he visto. El código XHTML y CSS es claro, simple y muy fácil de entender para modificarlo. Hay 95 diseños distintos para elegir: 1 columna, 2 columnas, 3 columnas, etc.</p>
<p>Los layouts de <a href="http://www.code-sucks.com/css%20layouts/">Code Sucks</a> son perfectos para usar como base en el diseño de templates para CMS.</p>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/162/layouts-css-y-xhtml/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fuentes web seguras</title>
		<link>http://vloox.com/92/fuentes-web-seguras/</link>
		<comments>http://vloox.com/92/fuentes-web-seguras/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 04:15:48 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[fuentes]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=92</guid>
		<description><![CDATA[Al momento de diseñar una página web es importante elegir fuentes que estén instaladas en todos los sistemas operativos, ya que si no están disponibles el navegador mostrará la fuente por defecto. La siguiente tabla muestra las fuentes más comunes y con que sistemas operativos vienen. Son consideradas fuentes web seguras: Genérica Fuente Windows 9x/2K/XP [...]]]></description>
			<content:encoded><![CDATA[<p>Al momento de diseñar una página web es importante elegir fuentes que estén instaladas en todos los sistemas operativos, ya que si no están disponibles el navegador mostrará la fuente por defecto.</p>
<p>La siguiente tabla muestra las fuentes más comunes y con que sistemas operativos vienen. Son consideradas <strong>fuentes web seguras</strong>:</p>
<table border="0" cellspacing="0" cellpadding="3">
<thead>
<tr>
<th>Genérica</th>
<th>Fuente</th>
<th>Windows<br />
9x/2K/XP</th>
<th>Windows<br />
Vista</th>
<th>Mac<br />
Classic</th>
<th>Mac<br />
OS X</th>
<th>Linux<br />
Unix</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="5">serif</th>
<td style="font-family:Cambria">Cambria</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Constantina">Constantia</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td><span style="font-family: Times New Roman;">Times New Roman</span></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Times">Times</td>
<td align="center"></td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Georgia">Georgia</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<th rowspan="11">sans-serif</th>
<td style="font-family:Andale Mono">Andale Mono</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Arial">Arial</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Arial Black">Arial Black</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Calibri">Calibri</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Candara">Candara</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Century Gothic">Century Gothic</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Corbel">Corbel</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Helvetica">Helvetica</td>
<td align="center"></td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Impact">Impact</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Trebuchet MS">Trebuchet MS</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Verdana">Verdana</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<th>cursive</th>
<td style="font-family:Comic Sans MS">Comic Sans MS</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<th rowspan="3">monospace</th>
<td style="font-family:Consolas">Consolas</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Courier New">Courier New</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Courier">Courier</td>
<td align="center"></td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
</tr>
</tbody>
</table>
<p><small>La marca verde indica fuentes muy comunes, la amarilla indica fuentes no tan comunes pero generalmente aceptadas como fuentes web seguras.</small></p>
<p>Para mayor compatibilidad es conveniente indicar fuentes alternativas. Por ejemplo:</p>
<p><code>#fuente {<br />
font-family: Trebuchet, Verdana, Helvetica, sans-serif;<br />
}</code></p>
<p>Si la fuente primaria (Trebuchet) no está instalada el navegador usará la siguiente (Verdana), y así sucesivamente. Se indica la fuente genérica al final por si ninguna de las anteriores está instalada (en el ejemplo se mostrará la fuente sans-serif genérica).</p>
<p>Fuente: <a title="Fonts on the web and a list of web safe fonts" href="http://dustinbrewer.com/fonts-on-the-web-and-a-list-of-web-safe-fonts/">Dustin Brewer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/92/fuentes-web-seguras/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

