Los últimos tutoriales de desarrollo web
×

CSS Referencia

CSS Referencia CSS selectores CSS funciones CSS referencia Aural CSS Fuentes de seguridad Web CSS animatable CSS Unidades CSS PX-EM Convertidor CSS Colores CSS Color Valores CSS3 Soporte para el navegador

CSS propiedades

align-content align-items align-self all animation animation-delay animation-direction animation-duration animation-fill-mode animation-iteration-count animation-name animation-play-state animation-timing-function backface-visibility background background-attachment background-blend-mode background-clip background-color background-image background-origin background-position background-repeat background-size border border-bottom border-bottom-color border-bottom-left-radius border-bottom-right-radius border-bottom-style border-bottom-width border-collapse border-color border-image border-image-outset border-image-repeat border-image-slice border-image-source border-image-width border-left border-left-color border-left-style border-left-width border-radius border-right border-right-color border-right-style border-right-width border-spacing border-style border-top border-top-color border-top-left-radius border-top-right-radius border-top-style border-top-width border-width bottom box-shadow box-sizing caption-side clear clip color column-count column-fill column-gap column-rule column-rule-color column-rule-style column-rule-width column-span column-width columns content counter-increment counter-reset cursor direction display empty-cells filter flex flex-basis flex-direction flex-flow flex-grow flex-shrink flex-wrap float font @font-face font-family font-size font-size-adjust font-stretch font-style font-variant font-weight hanging-punctuation height justify-content @keyframes left letter-spacing line-height list-style list-style-image list-style-position list-style-type margin margin-bottom margin-left margin-right margin-top max-height max-width @media min-height min-width nav-down nav-index nav-left nav-right nav-up opacity order outline outline-color outline-offset outline-style outline-width overflow overflow-x overflow-y padding padding-bottom padding-left padding-right padding-top page-break-after page-break-before page-break-inside perspective perspective-origin position quotes resize right tab-size table-layout text-align text-align-last text-decoration text-decoration-color text-decoration-line text-decoration-style text-indent text-justify text-overflow text-shadow text-transform top transform transform-origin transform-style transition transition-delay transition-duration transition-property transition-timing-function unicode-bidi vertical-align visibility white-space width word-break word-spacing word-wrap z-index



 

CSS background Property


Ejemplo

Establecer diferentes propiedades de fondo en una declaración:

body {
    background: #00ff00 url("smiley.gif") no-repeat fixed center;
}
Inténtalo tú mismo "

Definición y Uso

El fondo de propiedad abreviada establece todas las propiedades de fondo en una declaración.

Las propiedades que se pueden configurar son: color de fondo, imagen de fondo, background-position, el fondo de tamaño, background-repeat, el origen de origen, el origen de clip y background-attachment.

No importa si uno de los valores anteriores están desaparecidos, por ejemplo, background: # ff0000 url(smiley.gif) ; esta permitido.

Valor por defecto: see individual properties
Heredado: no
animatable: yes, see individual properties . Read about animatable Try it
Versión: CSS1 + new properties in CSS3
la sintaxis de JavaScript: object .style.background="red url(smiley.gif) top left no-repeat" Try it

Soporte para el navegador

Los números de la tabla especifican la primera versión del navegador que es totalmente compatible con la propiedad.

Propiedad
background 1.0 4.0 1.0 1.0 3.5

Note: Internet Explorer 8 y versiones anteriores no son compatibles con múltiples imágenes de fondo de un elemento.

Nota: Consulte la ayuda del navegador individual para cada valor por debajo.


sintaxis CSS

background:bg-color bg-image position/bg-size bg-repeat bg-origin bg-clip bg-attachment initial|inherit;

Nota: Si una de las propiedades en la declaración de la taquigrafía es la propiedad bg-tamaño, debe utilizar una / (slash) para separarlo de la propiedad-bg posición, por ejemplo, background:url(smiley.gif) 10px 20px / 50px 50px ; dará como resultado una imagen de fondo en, posicionado 10 píxeles desde la izquierda, 20 píxeles desde la parte superior, y el tamaño de la imagen será de 50 píxeles de ancho por 50 píxeles de alto.

Nota: Si se utiliza múltiples fuentes Imagen de fondo pero también quieren un color de fondo, el parámetro background-color tiene que ser el último en la lista.

Valores de propiedad

Valor Descripción CSS
background-color Especifica el color de fondo que se utilizará 1
background-image Especifica una o más imágenes de fondo que se utilizará 1
background-position Especifica la posición de las imágenes de fondo 1
background-size Especifica el tamaño de las imágenes de fondo 3
background-repeat Especifica cómo repetir las imágenes de fondo 1
background-origin Especifica el área de posicionamiento de las imágenes de fondo 3
background-clip Especifica el área de la pintura de las imágenes de fondo 3
background-attachment Especifica si las imágenes de fondo se fijan o se desplaza con el resto de la página 1
inicial Establece esta propiedad a su valor por defecto. Lea acerca inicial 3
heredar Hereda esta propiedad de su elemento padre. Lee sobre heredar 2

Páginas relacionadas

CSS tutorial: Antecedentes CSS

CSS3 tutorial: Fondos de CSS3

Referencia HTML DOM: background property