diff options
author | mikyackerman <mikysmite@gmail.com> | 2017-05-18 07:42:00 -0300 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-05-18 12:42:00 +0200 |
commit | 5baf8fab2aba11cf6ed9f5d8d0841f69b87535f7 (patch) | |
tree | 65ba100895ce2fed426336b3fe4e5262c019a969 /css.html.markdown | |
parent | 064cbde932f135b37ddb615733a0d0e1940e78a9 (diff) |
Traduje algunos parrafos de el archivo (#2660)
* Traduccion EN-ES agregar contibudor
* traducir primer parrafo a ES
* traducir segundo parrafo a ES
* traducir tercer parrafo a ES
* traducir parrafo NOTA a ES
* traducir primer parrafo de sintaxis a ES
* traducir primer parrafo de selector a ES
Diffstat (limited to 'css.html.markdown')
-rw-r--r-- | css.html.markdown | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/css.html.markdown b/css.html.markdown index 3b378d44..98f2999c 100644 --- a/css.html.markdown +++ b/css.html.markdown @@ -1,6 +1,6 @@ --- -language: css -contributors: +lenguaje: css +contribudores: - ["Mohammad Valipour", "https://github.com/mvalipour"] - ["Marco Scannadinari", "https://github.com/marcoms"] - ["Geoffrey Liu", "https://github.com/g-liu"] @@ -8,35 +8,34 @@ contributors: - ["Deepanshu Utkarsh", "https://github.com/duci9y"] - ["Brett Taylor", "https://github.com/glutnix"] - ["Tyler Mumford", "https://tylermumford.com"] -filename: learncss.css + - ["miky ackerman", "https://github.com/mikyackerman"] +Archivo: learncss.css --- -Web pages are built with HTML, which specifies the content of a page. -CSS (Cascading Style Sheets) is a separate language which specifies -a page's **appearance**. +Paginas web estan contruidas en HTML, lo cual especifica el contenido de una pagina +CSS(Hoja de Estilos en Cascada) es un lenguaje separado el cual especifica +la **apariencia** de una pagina. -CSS code is made of static *rules*. Each rule takes one or more *selectors* and -gives specific *values* to a number of visual *properties*. Those properties are -then applied to the page elements indicated by the selectors. +codigo CSS esta hecho de *reglas* estaticas. Cada regla toma uno o mas *selectores* y da *valores* especificos a un numero de *propiedades* visuales. Esas propiedades estan entonces aplicadas a los elementos indicados en una pagina por los selectores -This guide has been written with CSS 2 in mind, which is extended by the new -features of CSS 3. +Esta guia ha sido escrita con CSS 2 en mente, la cual es extendida por una nueva caracterica de CSS 3. -**NOTE:** Because CSS produces visual results, in order to learn it, you need to -try everything in a CSS playground like [dabblet](http://dabblet.com/). -The main focus of this article is on the syntax and some general tips. +**NOTA:** Debido a que CSS produce resultados visuales, para aprenderlo, necesitas +Probar todo en un patio de juegos CSS como [dabblet] (http://dabblet.com/). +El objetivo principal de este artÃculo es la sintaxis y algunos consejos generales. -## Syntax +## Sintaxis ```css -/* comments appear inside slash-asterisk, just like this line! - there are no "one-line comments"; this is the only comment style */ +/* Los comentarios aparecen dentro de un diagonal-asterisco, justo como esta linea + no hay "comentarios en una linea"; este es el unico estilo de comentario.*/ + /* #################### ## SELECTORS #################### */ -/* the selector is used to target an element on a page. */ +/* el selector es usado para apuntar a un elemento de la pagina. */ selector { property: value; /* more properties...*/ } /* @@ -322,3 +321,5 @@ a new feature. * [Z-Index - The stacking context](https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Understanding_z_index/The_stacking_context) * [SASS](http://sass-lang.com/) and [LESS](http://lesscss.org/) for CSS pre-processing * [CSS-Tricks](https://css-tricks.com) + + |