<?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>Tellaw.org &#187; html</title>
	<atom:link href="http://www.tellaw.org/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tellaw.org</link>
	<description>La technologie doit devenir simple...</description>
	<lastBuildDate>Fri, 02 Apr 2010 14:48:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Equivalent JavaScript des propriétés de CSS.</title>
		<link>http://www.tellaw.org/2008/04/18/equivalent-javascript-des-proprietes-de-css/</link>
		<comments>http://www.tellaw.org/2008/04/18/equivalent-javascript-des-proprietes-de-css/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 15:39:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[astuce]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.tellaw.org/?p=32</guid>
		<description><![CDATA[Ce post va faire un bref recapitulatif des equivalent javascript des propriétés CSS. C&#8217;est en fait un re-post d&#8217;un ancien article, mais il semble être très demandé.

Pour rappel, afin de modifier le style d&#8217;un tag ayant comme id myElement il faut utiliser la syntaxe suivante :
document.getElementById(myElement).style.border = 1px solid black;



Javascript
Css


textDecoration
text-decoration


textDecorationLineThrough
text-decoration: line-through


textDecorationNone
text-decoration: none


textDecorationUnderline
text-decoration: underline


textDecorationOverline
text-decoration: overline


textIndent
text-indent


textTransform
text-transform


styleFloat
float


listStyle
list-style


listStyleImage
list-style-image


listStylePosition
list-style-position


listStyleType
list-style-type


paddingBottom
padding-bottom


paddingLeft
padding-left


paddingRight
padding-right


paddingTop
padding-top


pageBreakAfter
page-break-after


pageBreakBefore
page-break-before


font-family
fontFamily


font-size
fontSize


font-weight
fontWeight


font-variant
fontVariant


borderBottom
border-bottom


borderBottomColor
border-bottom-color


borderBottomStyle
border-bottom-style


borderBottomWidth
border-bottom-width


borderColor
border-color


borderLeft
border-left


borderLeftColor
border-left-color


borderLeftStyle
border-left-style


borderLeftWidth
border-left-width


borderRight
border-right


borderRightColor
border-right-color


borderRightStyle
border-right-style


borderRightWidth
border-right-width


borderStyle
border-style


borderTop
border-top


borderTopColor
border-top-color


borderTopStyle
border-top-style


borderTopWidth
border-top-width


borderWidth
border-width


marginBottom
margin-bottom


marginLeft
margin-left


marginRight
margin-right


marginTop
margin-top


lineHeight
line-height


letterSpacing
letter-spacing


verticalAlign
vertical-align


zIndex
z-index


backgroundAttachment
background-attachment


backgroundColor
background-color


backgroundImage
background-image


backgroundPosition
background-position


backgroundRepeat
background-repeat



Les propriétés [...]]]></description>
			<content:encoded><![CDATA[<p>Ce post va faire un bref recapitulatif des equivalent javascript des propriétés CSS. C&#8217;est en fait un re-post d&#8217;un ancien article, mais il semble être très demandé.</p>
<p><span id="more-32"></span></p>
<p>Pour rappel, afin de modifier le style d&#8217;un tag ayant comme id myElement il faut utiliser la syntaxe suivante :</p>
<p><strong>document.getElementById(myElement).style.</strong>border = 1px solid black;</p>
<table style="border: 1px none;" border="0" width="500" align="center">
<tbody>
<tr bgcolor="#f2f9c2">
<td><strong>Javascript</strong></td>
<td><strong>Css</strong></td>
</tr>
<tr>
<td>textDecoration</td>
<td>text-decoration</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>textDecorationLineThrough</td>
<td>text-decoration: line-through</td>
</tr>
<tr>
<td>textDecorationNone</td>
<td>text-decoration: none</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>textDecorationUnderline</td>
<td>text-decoration: underline</td>
</tr>
<tr>
<td>textDecorationOverline</td>
<td>text-decoration: overline</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>textIndent</td>
<td>text-indent</td>
</tr>
<tr>
<td>textTransform</td>
<td>text-transform</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>styleFloat</td>
<td>float</td>
</tr>
<tr>
<td>listStyle</td>
<td>list-style</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>listStyleImage</td>
<td>list-style-image</td>
</tr>
<tr>
<td>listStylePosition</td>
<td>list-style-position</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>listStyleType</td>
<td>list-style-type</td>
</tr>
<tr>
<td>paddingBottom</td>
<td>padding-bottom</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>paddingLeft</td>
<td>padding-left</td>
</tr>
<tr>
<td>paddingRight</td>
<td>padding-right</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>paddingTop</td>
<td>padding-top</td>
</tr>
<tr>
<td>pageBreakAfter</td>
<td>page-break-after</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>pageBreakBefore</td>
<td>page-break-before</td>
</tr>
<tr>
<td>font-family</td>
<td>fontFamily</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>font-size</td>
<td>fontSize</td>
</tr>
<tr>
<td>font-weight</td>
<td>fontWeight</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>font-variant</td>
<td>fontVariant</td>
</tr>
<tr>
<td>borderBottom</td>
<td>border-bottom</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>borderBottomColor</td>
<td>border-bottom-color</td>
</tr>
<tr>
<td>borderBottomStyle</td>
<td>border-bottom-style</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>borderBottomWidth</td>
<td>border-bottom-width</td>
</tr>
<tr>
<td>borderColor</td>
<td>border-color</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>borderLeft</td>
<td>border-left</td>
</tr>
<tr>
<td>borderLeftColor</td>
<td>border-left-color</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>borderLeftStyle</td>
<td>border-left-style</td>
</tr>
<tr>
<td>borderLeftWidth</td>
<td>border-left-width</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>borderRight</td>
<td>border-right</td>
</tr>
<tr>
<td>borderRightColor</td>
<td>border-right-color</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>borderRightStyle</td>
<td>border-right-style</td>
</tr>
<tr>
<td>borderRightWidth</td>
<td>border-right-width</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>borderStyle</td>
<td>border-style</td>
</tr>
<tr>
<td>borderTop</td>
<td>border-top</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>borderTopColor</td>
<td>border-top-color</td>
</tr>
<tr>
<td>borderTopStyle</td>
<td>border-top-style</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>borderTopWidth</td>
<td>border-top-width</td>
</tr>
<tr>
<td>borderWidth</td>
<td>border-width</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>marginBottom</td>
<td>margin-bottom</td>
</tr>
<tr>
<td>marginLeft</td>
<td>margin-left</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>marginRight</td>
<td>margin-right</td>
</tr>
<tr>
<td>marginTop</td>
<td>margin-top</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>lineHeight</td>
<td>line-height</td>
</tr>
<tr>
<td>letterSpacing</td>
<td>letter-spacing</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>verticalAlign</td>
<td>vertical-align</td>
</tr>
<tr>
<td>zIndex</td>
<td>z-index</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>backgroundAttachment</td>
<td>background-attachment</td>
</tr>
<tr>
<td>backgroundColor</td>
<td>background-color</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>backgroundImage</td>
<td>background-image</td>
</tr>
<tr>
<td>backgroundPosition</td>
<td>background-position</td>
</tr>
<tr bgcolor="#e0e0e0">
<td>backgroundRepeat</td>
<td>background-repeat</td>
</tr>
</tbody>
</table>
<p>Les propriétés CSS composées d\&#8217;un seul mot ont un equivalent en javascript.</p>
<p><strong>Liens utiles :</strong></p>
<ul>
<li><a href="http://www.w3schools.com/css/" target="_blank">CSS Tutorial</a></li>
<li><a href="http://www.w3schools.com/js/" target="_blank">Javascript Tutorial</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.tellaw.org/2008/04/18/equivalent-javascript-des-proprietes-de-css/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Blueprint CSS : Utilisez une grille pour caler vos pages.</title>
		<link>http://www.tellaw.org/2008/04/17/blueprint-css-utilisez-une-grille-pour-caler-vos-pages/</link>
		<comments>http://www.tellaw.org/2008/04/17/blueprint-css-utilisez-une-grille-pour-caler-vos-pages/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 08:23:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.tellaw.org/?p=23</guid>
		<description><![CDATA[L’utilisation d’une grille pour caler une CSS est assez courant. Mais vous ne connaissez peut être pas (comme moi) le projet blueprint CSS.

Ce projet est un Framework CSS qui à pour objectif de réduire considérablement le temps de dev sur les CSS. Nous passons beaucoup de temps à faire du calage sur les différents navigateurs. Ce temps [...]]]></description>
			<content:encoded><![CDATA[<p>L’utilisation d’une grille pour caler une CSS est assez courant. Mais vous ne connaissez peut être pas (comme moi) le projet blueprint CSS.</p>
<p><span id="more-23"></span></p>
<p><span>Ce projet <strong>est un Framework CSS</strong> qui à pour objectif de réduire considérablement le temps de dev sur les CSS. Nous passons beaucoup de temps à faire du calage sur les différents navigateurs. Ce temps est de la pure perte car il est systématique à tous les projets…</span></p>
<p><span>Blueprint permet de positionner ces éléments HTML sur une grille proposée par le Framework.</span></p>
<p><span>la page ci-dessous va vous expliquer le concept encore mieux…</span></p>
<ul>
<li><a href="http://code.google.com/p/blueprintcss/" target="_blank">http://code.google.com/p/blueprintcss/</a></li>
<li><a href="http://files.bjorkoy.com/blueprint/tests/parts/grid.html" target="_blank">http://files.bjorkoy.com/blueprint/tests/parts/grid.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.tellaw.org/2008/04/17/blueprint-css-utilisez-une-grille-pour-caler-vos-pages/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
