<?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>web 3.0 &#187; CSS</title>
	<atom:link href="http://web-3.es/category/desarrollo/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://web-3.es</link>
	<description>walk on the webside</description>
	<lastBuildDate>Tue, 15 May 2012 23:49:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>El -9999px ha muerto, viva el #replace</title>
		<link>http://web-3.es/2460/</link>
		<comments>http://web-3.es/2460/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 18:21:34 +0000</pubDate>
		<dc:creator>emoticon</dc:creator>
				<category><![CDATA[Accesibilidad]]></category>
		<category><![CDATA[Código]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Evergreen]]></category>
		<category><![CDATA[Usabilidad]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=2460</guid>
		<description><![CDATA[Esto es lo que hacemos desde hace diez años con los logos: &#60;h1&#62;Texto del logo + a veces eslogan&#60;/h1&#62; &#60;style&#62;                  h1                      {                         background: url("myimage") 0 ...]]></description>
			<content:encoded><![CDATA[<p><strong>Esto es lo que hacemos desde hace diez años con los logos:</strong></p>
<pre>&lt;h1&gt;Texto del logo + a veces eslogan&lt;/h1&gt;</pre>
<pre>&lt;style&gt;
                 h1
                     {
                        background: url("myimage") 0 0 no-repeat;
                         text-indent: -9999px;
                       }
&lt;/style&gt;</pre>
<p><strong>Se acabó. Zeldman ha bautizado el nuevo método  que ya uso* y recomiendo con </strong></p>
<h2>&#8220;The Kellum Method&#8221;</h2>
<p>El código es limpio, fácil y perfecto siempre que necesitamos que las imágenes de los logos se adapten (por cierto, ¿se habrá inventado ya algún sustituto para <em><strong>responsive design</strong></em> y<em><strong> media queries</strong></em> en castellano?).  No lo voy a usar para los H2,H3 etc, para eso ya tenemos las APIs y webkit.</p>
<p>#replace</p>
<pre> {
 text-indent: 100%;
 white-space: nowrap;
 overflow: hidden;
 }</pre>
<pre></pre>
<pre></pre>
<pre>* en todas las webs nuevas <img src='http://web-3.es/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </pre>
]]></content:encoded>
			<wfw:commentRss>http://web-3.es/2460/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>¿Así que querías saber (casi todo) de CSS?</title>
		<link>http://web-3.es/381/</link>
		<comments>http://web-3.es/381/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 01:11:11 +0000</pubDate>
		<dc:creator>bevilacqua</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Herramientas]]></category>
		<category><![CDATA[Así]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=381</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://web-3.es/381/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using CSS Variables</title>
		<link>http://web-3.es/142/</link>
		<comments>http://web-3.es/142/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 20:16:44 +0000</pubDate>
		<dc:creator>emoticon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Object Model]]></category>
		<category><![CDATA[CSS stylesheet]]></category>
		<category><![CDATA[CSS Variables]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[pair]]></category>
		<category><![CDATA[property values]]></category>
		<category><![CDATA[variables]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=142</guid>
		<description><![CDATA[It is very common to find repeated property values in a CSS stylesheet. CSS Variables allow authors to define variables that are reusable as property values anywhere in a stylesheet and queryable/modifiable through an extension of the CSS Object Model. CSS Variables can define stylesheet-wide values identified by a token and usable in all CSS ...]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1415" style="margin-left: 10px; margin-right: 10px;" title="css" src="http://web-3.es/wp-content/uploads/css.jpg" alt="magen vista en wikipedia" width="275" height="313" />It is very common to find repeated property values in a CSS stylesheet. CSS Variables allow authors to define variables that are reusable as property values anywhere in a stylesheet and queryable/modifiable through an extension of the CSS Object Model.<br />
CSS Variables can define stylesheet-wide values identified by a token and usable in all CSS declarations. A recurring value, like colors or background-color in a stylesheet, will be way easier to update across the stylesheet if a developer has to modify at just one single place or value instead of modifying all style rules applying the property:value pair.<br />
CSS Variables, once implemented, will allow authors to define variables that are reusable as property values anywhere in a stylesheet and queryable/modifiable through an extension of the CSS Object Model.<br />
Majority of the Web Designers and Developers has been requesting a way of defining CSS Variables since its early release. Nonetheless, some are of the opinion that it is not needed and will complicate matters.<br />
Why variables in CSS?</p>
<p><span id="more-142"></span><br />
Many a times, any CSS developer would have felt that s/he is using repeated property values in a CSS stylesheet, for instance to make sure semantically different elements in a web page have a similar rendering and user experience. CSS does offer a way to group styles using groups of selectors, but we tend to neglect it more because of the fact that it&#8217;s difficult to maintain, decreases readability and of course semantically distinct elements rarely share all style rules.<br />
CSS Variables Note names David Hyatt of Apple as one of the author, the other is Daniel Glazman of Disruptive Innovations. We might see a early implementation of CSS Variables in a future version of Safari!<br />
The CSS Variables Definition<br />
CSS Variables should be defined in an @variables at-rule. An @variable at-rule is composed of the &#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://web-3.es/142/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS RESET &#8211; ACTUALIZACIÓN FEB08</title>
		<link>http://web-3.es/1689/</link>
		<comments>http://web-3.es/1689/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 08:21:39 +0000</pubDate>
		<dc:creator>emoticon</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Herramientas]]></category>
		<category><![CDATA[blockquote]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[RESET]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=129</guid>
		<description><![CDATA[http://meyerweb.com/eric/tools/css/reset/reset.css /* v1.0 &#124; 20080212 */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://meyerweb.com/eric/tools/css/reset/reset.css">http://meyerweb.com/eric/tools/css/reset/reset.css</a></p>
<p><span id="more-1689"></span></p>
<pre>/* v1.0 | 20080212 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
/* remember to define focus styles! */
:focus {
outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
text-decoration: none;
}
del {
text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: collapse;
border-spacing: 0;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://web-3.es/1689/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nostálgicos de  las tablas</title>
		<link>http://web-3.es/1678/</link>
		<comments>http://web-3.es/1678/#comments</comments>
		<pubDate>Tue, 13 Jun 2006 12:01:13 +0000</pubDate>
		<dc:creator>emoticon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[comportamiento]]></category>
		<category><![CDATA[declarar]]></category>
		<category><![CDATA[divs]]></category>
		<category><![CDATA[Nost]]></category>
		<category><![CDATA[Nostálgicos]]></category>
		<category><![CDATA[resisten]]></category>
		<category><![CDATA[sólo]]></category>
		<category><![CDATA[tablas]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=75</guid>
		<description><![CDATA[¿Cómo imitar el comportamiento de las tablas cuando los altos de las divs se resisten? . Visto en slashdot.: Consiste en declarar las propiedades de display como &#8220;table&#8221; para el body, de &#8220;table-row&#8221; para los elementos que abarcan toda la amplitud del body, y &#8220;table-cell&#8221; para los que sólo ocupan una parte. Por lo que ...]]></description>
			<content:encoded><![CDATA[<p>¿Cómo imitar el comportamiento de las tablas cuando los altos de las divs se resisten? .<br />
Visto en slashdot.:<br />
Consiste  en declarar las propiedades de display como &#8220;table&#8221; para el body, de &#8220;table-row&#8221; para los elementos que abarcan toda la amplitud del body, y &#8220;table-cell&#8221; para los que sólo ocupan una parte.<br />
Por lo que dice, parece que esto además obliga a cada div a ocupar el 100% de la altura que ocupa la &#8220;fila&#8221; a la que pertenecen (creo que hace falta poner un &#8220;table-row&#8221; para saltar una fila). HabÂ´ra que probarlo,  es posible que en IE no funcione. Pero eso tampoco sería ninguna sorpresa.</p>
<blockquote><p>
body {<br />
display: table;<br />
width: 100%;<br />
}<br />
#header, #footer {<br />
display: table-row;<br />
}<br />
#foo, #bar, #baz {<br />
display: table-cell;<br />
width: 33.3%;<br />
}<br />
&#8220;<body></p>
<div id="header"> </div>
<p> //primera fila, 1 celda</p>
<div id="foo"> </div>
<p>  //segunda fila, 3 celdas</p>
<div id="bar"> </div>
<div id="baz"> </div>
<div id="footer"> </div>
<p> //tercera fila, 1 celda<br />
</body>&#8221;
</p></blockquote>
<p>Discusión original:<br />
<a href="http://ask.slashdot.org/article.pl?sid=06/06/10/2337223">http://ask.slashdot.org/article.pl?sid=06/06/10/2337223</a><br />
Comentario referido:<br />
<a href="http://ask.slashdot.org/comments.pl?sid=188125&#038;cid=15512090">http://ask.slashdot.org/comments.pl?sid=188125&#038;cid=15512090</a></p>
]]></content:encoded>
			<wfw:commentRss>http://web-3.es/1678/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desarrollo accesible: las herramientas imprescindibles</title>
		<link>http://web-3.es/36/</link>
		<comments>http://web-3.es/36/#comments</comments>
		<pubDate>Mon, 30 Jan 2006 14:20:35 +0000</pubDate>
		<dc:creator>emoticon</dc:creator>
				<category><![CDATA[Accesibilidad]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Evergreen]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[barra de herramientas]]></category>
		<category><![CDATA[Chris Pederik]]></category>
		<category><![CDATA[Desarrollo]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[sitios]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Web Developer]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=36</guid>
		<description><![CDATA[Mozilla Web Developer Extension . Lo mejor en mucho tiempo: es una barra de herramientas que permite deshabilitar javascript , hojas de estilo, im&#225;genes&#8230;ver el c&#243;gido&#8230; tiene servicio de validaci&#243;n de CSS, (X)HTML, accesibilidad&#8230; Su autor es Chris Pederik y es justo que mires lo que dice &#233;l mismo sobre todas las funcionalidades de su ...]]></description>
			<content:encoded><![CDATA[<h3><strong>Mozilla</strong></h3>
<p><a href="http://www.chrispederick.com/work/firefox/webdeveloper/">Web Developer Extension </a> . Lo mejor en mucho tiempo: es una barra de herramientas que permite deshabilitar javascript , hojas de estilo, im&aacute;genes&#8230;ver el c&oacute;gido&#8230; tiene servicio de validaci&oacute;n de CSS, (X)HTML, accesibilidad&#8230; Su autor es <strong>Chris Pederik </strong>y es justo que mires lo que dice &eacute;l mismo sobre <a href="http://www.chrispederick.com/work/firefox/webdeveloper/features/">todas las funcionalidades de su Web Developer Extension </a>&#8230;..  </p>
<p><span id="more-36"></span></p>
<p><a href="http://checky.mozdev.org/">Checky </a>Valida HTML, CSS, WCAG 1.0, 508&#8230; Pero tambi&eacute;n te muestra tu web en Lynx, simula deficiencias visuales&#8230; De todo. </p>
<h3><strong>Internet Explorer </strong></h3>
<p><a href="http://checkie.orange-soft.com/index.htm">CheckIE </a> de OrangeSoft es la versi&oacute;n para Internet Explorer de la extensi&oacute;n Checky. Muy completa. </p>
<p>Internet Explorer Accessibility Extension (ieaccessible) : enfocada a usuarios discapacitados con  funcionalidades como la de mostrar la lista de los objetos de formularios agrupados por la etiqueta &lt;label&gt; , lista de encabezados, lista de enlaces, escoger entre la hoja de estilo del autor o del usuario, etc. Para que no se escape nada.
</p>
<h3>&nbsp;</h3>
<h3><strong>Validaci&oacute;n </strong></h3>
<p> El que preferimos es <a href="http://aprompt.snow.utoronto.ca/download.html">A-Prompt (Accessibility Prompt)</a> es un software de la <a href="http://www.utoronto.ca//atrc/">Universidad de Toronto </a> que no s&oacute;lo valida sino que est&aacute; dise&ntilde;ado para optimizar la accesibilidad: Tiene una excelente heramienta  reparar los errores. </p>
<p><a href="http://www.sidar.org/hera/">HERA </a> en castelano. Revisi&oacute;n manual de la accesibilidad de sitios web. Permite generar informes de la evaluaci&oacute;n en formato HTML o RDF. </p>
<p><a href="http://www.tawdis.net">Test de Accesibilidad Web </a> Herramienta de validaci&oacute;n de las pautas WCAG. Versi&oacute;n descargable, tambi&eacute;n disponible como extensi&oacute;n de Firefox , permite hacer informes de sitios web completos, con una listado de comprobaci&oacute;n  de validaci&oacute;n manual. </p>
<p>&nbsp;</p>
<h3>Macromedia Dreamweaver </h3>
<p>Para los fieles a DW , existe una herramienta en modo WYSIWYG : <a href="http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn120#view=sn121&amp;viewName=Dreamweaver%20Extension&amp;loc=en_us&amp;authorid=31528835&amp;page=0&amp;scrollPos=0&amp;subcatid=0&amp;snid=sn121&amp;itemnumber=10&amp;extid=671605&amp;catid=0">Accessibility Suite for W3C/WCAG </a>Extensi&oacute;n gratuita que ayuda a cumplir las pautas de prioridad 1 y 2.</p>
]]></content:encoded>
			<wfw:commentRss>http://web-3.es/36/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asegurar el logotipo</title>
		<link>http://web-3.es/25/</link>
		<comments>http://web-3.es/25/#comments</comments>
		<pubDate>Tue, 03 Jan 2006 17:19:37 +0000</pubDate>
		<dc:creator>emoticon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[codigo]]></category>
		<category><![CDATA[desactivada]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[imromirlo]]></category>
		<category><![CDATA[logotipo]]></category>
		<category><![CDATA[resolucion]]></category>
		<category><![CDATA[sitios]]></category>
		<category><![CDATA[Una alternativa]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=25</guid>
		<description><![CDATA[Una alternativa eficaz para mostar un logotipo y imromirlo en buena resolucion incluso. Hack para asegurar que codigo semanticamente correcto en los sitios que tienen desactivada la visualizaci]]></description>
			<content:encoded><![CDATA[<p>Una alternativa  eficaz  para mostar un logotipo y imromirlo en buena resolucion incluso. Hack para asegurar que codigo semanticamente correcto en los sitios que tienen desactivada la visualizaci</p>
]]></content:encoded>
			<wfw:commentRss>http://web-3.es/25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS para imprimir //</title>
		<link>http://web-3.es/11/</link>
		<comments>http://web-3.es/11/#comments</comments>
		<pubDate>Sun, 23 Oct 2005 23:27:29 +0000</pubDate>
		<dc:creator>emoticon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Desarrollo]]></category>
		<category><![CDATA[behavior]]></category>
		<category><![CDATA[block elements]]></category>
		<category><![CDATA[Description]]></category>
		<category><![CDATA[element]]></category>
		<category><![CDATA[elements]]></category>
		<category><![CDATA[Insert]]></category>
		<category><![CDATA[minimum number]]></category>
		<category><![CDATA[Property Description Values]]></category>
		<category><![CDATA[Value Description]]></category>
		<category><![CDATA[Values]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=11</guid>
		<description><![CDATA[CSS for print : properties, descriptions, values en W3C ref Property Description Values W3C orphans Sets the minimum number of lines for a paragraph that must be left at the bottom of a page number 2 marks Sets what sort of marks should be rendered outside the page box none crop cross page Sets a ...]]></description>
			<content:encoded><![CDATA[<p>CSS for print : properties, descriptions, values en W3C ref</p>
<p><span id="more-11"></span></p>
<table border="0" cellpadding="3" cellspacing="2">
<tr>
<th align="left" width="25%">Property</th>
<th align="left" width="48%">Description</th>
<th align="left" width="20%">Values</th>
<th align="left" width="7%">W3C</th>
</tr>
<tr>
<td valign="top">orphans</td>
<td valign="top">Sets the minimum number of lines for a paragraph that must be left at the bottom of a page</td>
<td valign="top"><em>number</em></td>
<td valign="top">2</td>
</tr>
<tr>
<td valign="top"> marks </td>
<td valign="top">Sets what sort of marks should be rendered outside the page        box</td>
<td valign="top">none<br />
crop<br />
cross</td>
<td valign="top"></td>
</tr>
<tr>
<td valign="top"> page </td>
<td valign="top">Sets a page type to use when displaying an element</td>
<td valign="top">auto<em><br />
identifier</em></td>
<td valign="top">2</td>
</tr>
<tr>
<td valign="top"><a href="#after" > page-break-after</a></td>
<td valign="top">Sets the page-breaking behavior after an element</td>
<td valign="top">auto<br />
always<br />
avoid<br />
left<br />
right</td>
<td valign="top">2</td>
</tr>
<tr>
<td valign="top"><a href="#before"> page-break-</a><a href="#before">before</a></td>
<td valign="top">
<p>Sets the page-breaking behavior before an element</p>
</td>
<td valign="top">auto<br />
always<br />
avoid<br />
left<br />
right</td>
<td valign="top">2</td>
</tr>
<tr>
<td valign="top"><a href="#inside">page-break-inside</a></td>
<td valign="top">Sets the page-breaking behavior inside an element</td>
<td valign="top">auto<br />
avoid</td>
<td valign="top">2</td>
</tr>
<tr>
<td valign="top">size</td>
<td valign="top">Sets the orientation and size of a page</td>
<td valign="top">auto<br />
portrait<br />
landscape</td>
<td valign="top"></td>
</tr>
<tr>
<td valign="top">widows</td>
<td valign="top">Sets the minimum number of lines for a paragraph that must be left at the        top of a page</td>
<td valign="top"><em>number</em></td>
<td valign="top">2</td>
</tr>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3><a name="after" id="after"></a>The page-break-after property sets the page-breaking behavior after an  element.</h3>
<p><strong>Note:</strong> You can not use this property on absolutely positioned elements.</p>
<p><strong>Note:</strong> Use the page-breaking properties as few times as possible and  avoid page-breaking properties inside tables, floating elements, and block elements with      borders.</p>
<p><strong>Inherited:</strong> No</p>
<h2>Example</h2>
<table border="1" cellpadding="3" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<p>table<br />
{&nbsp;<br />
page-break-after: always<br />
}</p>
</td>
</tr>
</tbody>
</table>
<h2>Possible Values</h2>
<table border="1" cellpadding="3" cellspacing="0" width="100%">
<tbody>
<tr>
<th align="left" valign="top">Value</th>
<th align="left" valign="top">Description</th>
</tr>
<tr>
<td valign="top">auto</td>
<td valign="top">Insert a page break after the element if necessary</td>
</tr>
<tr>
<td valign="top">always</td>
<td valign="top">Insert a page break after the element</td>
</tr>
<tr>
<td valign="top">avoid</td>
<td valign="top">Avoid inserting a page break after the element</td>
</tr>
<tr>
<td valign="top">left</td>
<td valign="top">Insert page breaks after the element until it          reaches a blank left page</td>
</tr>
<tr>
<td valign="top">right</td>
<td valign="top">Insert page breaks after the element until it          reaches a blank right page</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h1>&nbsp;</h1>
<h3><a name="before" id="before"></a>The page-break-before property sets the page-breaking behavior before an  element.</h3>
<p><strong>Note:</strong> You can not use this property on absolutely positioned elements.</p>
<p><strong>Note:</strong> Use the page-breaking properties as few times as possible and  avoid page-breaking properties inside tables, floating elements, and block elements with      borders.</p>
<p><strong>Inherited:</strong> No</p>
<h2>Example</h2>
<table border="1" cellpadding="3" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<p>table<br />
{&nbsp;<br />
page-break-before: always<br />
}</p>
</td>
</tr>
</tbody>
</table>
<h2>Possible Values</h2>
<table border="1" cellpadding="3" cellspacing="0" width="100%">
<tbody>
<tr>
<th align="left" valign="top">Value</th>
<th align="left" valign="top">Description</th>
</tr>
<tr>
<td valign="top">auto</td>
<td valign="top">Insert a page break before the element if necessary</td>
</tr>
<tr>
<td valign="top">always</td>
<td valign="top">Insert a page break before the element</td>
</tr>
<tr>
<td valign="top">avoid</td>
<td valign="top">Avoid inserting a page break before the element</td>
</tr>
<tr>
<td valign="top">left</td>
<td valign="top">Insert page breaks before the element until it          reaches a blank left page</td>
</tr>
<tr>
<td valign="top">right</td>
<td valign="top">Insert page breaks before the element until it          reaches a blank right page</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3><a name="inside" id="inside"></a>The page-break-inside property sets the page-breaking behavior inside an  element.</h3>
<p><strong>Note:</strong> You can not use this property on absolutely positioned elements.</p>
<p><strong>Note:</strong> Use the page-breaking properties as few times as possible and  avoid page-breaking properties inside tables, floating elements, and block elements with      borders.</p>
<p><strong>Inherited:</strong> No</p>
<h2>Example</h2>
<table border="1" cellpadding="3" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<p>p<br />
{&nbsp;<br />
page-break-inside: avoid<br />
}</p>
</td>
</tr>
</tbody>
</table>
<h2>Possible Values</h2>
<table border="1" cellpadding="3" cellspacing="0" width="100%">
<tbody>
<tr>
<th align="left" valign="top">Value</th>
<th align="left" valign="top">Description</th>
</tr>
<tr>
<td valign="top">auto</td>
<td valign="top">Insert a page break inside the element if necessary</td>
</tr>
<tr>
<td valign="top">avoid</td>
<td valign="top">Avoid inserting a page break inside the element</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://web-3.es/11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>216 colores</title>
		<link>http://web-3.es/10/</link>
		<comments>http://web-3.es/10/#comments</comments>
		<pubDate>Sun, 23 Oct 2005 22:45:48 +0000</pubDate>
		<dc:creator>emoticon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Herramientas]]></category>
		<category><![CDATA[bloc]]></category>
		<category><![CDATA[bloc de notas]]></category>
		<category><![CDATA[colores]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=10</guid>
		<description><![CDATA[De vuelta al bloc de notas, que es c]]></description>
			<content:encoded><![CDATA[<p>De vuelta al bloc de notas, que es c</p>
]]></content:encoded>
			<wfw:commentRss>http://web-3.es/10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS: Experimentos, trucos, utilidades &#8230;</title>
		<link>http://web-3.es/6/</link>
		<comments>http://web-3.es/6/#comments</comments>
		<pubDate>Sat, 22 Oct 2005 04:23:07 +0000</pubDate>
		<dc:creator>emoticon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Desarrollo]]></category>
		<category><![CDATA[Experimentos]]></category>
		<category><![CDATA[Imaginaci]]></category>

		<guid isPermaLink="false">http://web-3.es/?p=6</guid>
		<description><![CDATA[Imaginaci]]></description>
			<content:encoded><![CDATA[<p><strong>Imaginaci</p>
]]></content:encoded>
			<wfw:commentRss>http://web-3.es/6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

