mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-27 07:33:57 +00:00
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
This commit is contained in:
parent
064cbde932
commit
5baf8fab2a
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
language: css
|
lenguaje: css
|
||||||
contributors:
|
contribudores:
|
||||||
- ["Mohammad Valipour", "https://github.com/mvalipour"]
|
- ["Mohammad Valipour", "https://github.com/mvalipour"]
|
||||||
- ["Marco Scannadinari", "https://github.com/marcoms"]
|
- ["Marco Scannadinari", "https://github.com/marcoms"]
|
||||||
- ["Geoffrey Liu", "https://github.com/g-liu"]
|
- ["Geoffrey Liu", "https://github.com/g-liu"]
|
||||||
@ -8,35 +8,34 @@ contributors:
|
|||||||
- ["Deepanshu Utkarsh", "https://github.com/duci9y"]
|
- ["Deepanshu Utkarsh", "https://github.com/duci9y"]
|
||||||
- ["Brett Taylor", "https://github.com/glutnix"]
|
- ["Brett Taylor", "https://github.com/glutnix"]
|
||||||
- ["Tyler Mumford", "https://tylermumford.com"]
|
- ["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.
|
Paginas web estan contruidas en HTML, lo cual especifica el contenido de una pagina
|
||||||
CSS (Cascading Style Sheets) is a separate language which specifies
|
CSS(Hoja de Estilos en Cascada) es un lenguaje separado el cual especifica
|
||||||
a page's **appearance**.
|
la **apariencia** de una pagina.
|
||||||
|
|
||||||
CSS code is made of static *rules*. Each rule takes one or more *selectors* and
|
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
|
||||||
gives specific *values* to a number of visual *properties*. Those properties are
|
|
||||||
then applied to the page elements indicated by the selectors.
|
|
||||||
|
|
||||||
This guide has been written with CSS 2 in mind, which is extended by the new
|
Esta guia ha sido escrita con CSS 2 en mente, la cual es extendida por una nueva caracterica de CSS 3.
|
||||||
features of CSS 3.
|
|
||||||
|
|
||||||
**NOTE:** Because CSS produces visual results, in order to learn it, you need to
|
**NOTA:** Debido a que CSS produce resultados visuales, para aprenderlo, necesitas
|
||||||
try everything in a CSS playground like [dabblet](http://dabblet.com/).
|
Probar todo en un patio de juegos CSS como [dabblet] (http://dabblet.com/).
|
||||||
The main focus of this article is on the syntax and some general tips.
|
El objetivo principal de este artículo es la sintaxis y algunos consejos generales.
|
||||||
|
|
||||||
## Syntax
|
## Sintaxis
|
||||||
|
|
||||||
```css
|
```css
|
||||||
/* comments appear inside slash-asterisk, just like this line!
|
/* Los comentarios aparecen dentro de un diagonal-asterisco, justo como esta linea
|
||||||
there are no "one-line comments"; this is the only comment style */
|
no hay "comentarios en una linea"; este es el unico estilo de comentario.*/
|
||||||
|
|
||||||
|
|
||||||
/* ####################
|
/* ####################
|
||||||
## SELECTORS
|
## 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...*/ }
|
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)
|
* [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
|
* [SASS](http://sass-lang.com/) and [LESS](http://lesscss.org/) for CSS pre-processing
|
||||||
* [CSS-Tricks](https://css-tricks.com)
|
* [CSS-Tricks](https://css-tricks.com)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user