User Tools

Site Tools


web_design:tablas:css

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
web_design:tablas:css [2021/10/14 13:06]
mag [Alineación]
web_design:tablas:css [2023/08/16 09:33] (current)
Line 1: Line 1:
 ====== Lección 3 de Desarrollo Web - Tablas ====== ====== Lección 3 de Desarrollo Web - Tablas ======
-===== Hojas de estilo en cascada (CSS) =====+===== Hojas de Estilo en Cascada (CSS) =====
 ==== Preparacion ==== ==== Preparacion ====
   * Continua usando el trabajo que hiciste en [[https://jsfiddle.net|jsfiddle]] en la ultima leccion.   * Continua usando el trabajo que hiciste en [[https://jsfiddle.net|jsfiddle]] en la ultima leccion.
Line 45: Line 45:
  
 ==== Italic ==== ==== Italic ====
-  * Now make the <html>span</html> italic using the following code.+  * Ahora, cambia el <html>span</html> para parecer cursiva usando el siguiente codigo.
 <code>span { <code>span {
   font-style: italic;   font-style: italic;
 }</code> }</code>
-  * If you had more than one <html><span></html> tagthey would all be italicised+  * Si tuviera mas que una <html><span></html> etiquetatodos aparecerían en cursiva
-  * Try adding another <html><span></html> tag somewhere in the textDid it automatically become italicisedThat's handyisn't it?+  * Prueba anadir otra etiqueta <html><span></html> en otro lugar del texto¿Se puso automáticamente en cursivaEso es útil¿cierto?
  
 ==== Font Family ==== ==== Font Family ====
-  * Let's modify the heading+  * Modificamos el cabezera
-  * We can change the font family by adding the same code as the attribute.+  * Podemos cambiar la familia del fuente usando lo mismo codigo del atributos.
 <code>h1 { <code>h1 {
   font-family: Arial, sans-serif;   font-family: Arial, sans-serif;
 }</code> }</code>
  
-==== Font Size ==== +==== Tamano del Fuente ==== 
-  * Let's make the heading really big.+  * Hagamos el titulo muy grande.
 <code>font-size: 3em;</code> <code>font-size: 3em;</code>
  
-==== Underline, Small Caps, Line Height, Shadow ==== +==== Decoraciones ==== 
-  * Any attribute that works in HTML can be used in CSS. Let's complete the heading using the same attributes as before.+  * Cualquier atributo que funcione en HTML se puede utilizar en CSS . Completemos el titulo usando los mismos atributos que antes.
 <code>h1 { <code>h1 {
   font-family: Arial, sans-serif;   font-family: Arial, sans-serif;
Line 73: Line 73:
   text-shadow:2px 2px #ff0000;   text-shadow:2px 2px #ff0000;
 }</code> }</code>
-  * Notice that by placing each style definition on a separate line and indenting them makes it very clear which element is targeted and what styles they will useIf you haven't been indenting your code, please try from now on.+  * Cualquier atributo que funcione en HTML se puede utilizar en CSS Completemos el encabezado usando los mismos atributos que antes.
  
-[[web_design:horario:tables|NextTables]]+[[web_design:tablas:tables|SiguienteTablas]]
web_design/tablas/css.1634241998.txt.gz · Last modified: 2023/08/16 09:33 (external edit)