Saltar al contenido

insertar imagen ejemplo de código html css

Siéntete en la libertad de compartir nuestro espacio y códigos en tus redes sociales, necesitamos tu ayuda para ampliar nuestra comunidad.

Ejemplo 1: imágenes en html

<html><head></head><body><img src="exampel.end"></img></body></html>

Ejemplo 2: cómo agregar una imagen en css

.element
  background-image:url("imageFile.png");

Ejemplo 3: insertar imagen por css

div.mydiv:after 
  content:url(image.jpg);/*url of your image*/

or

div.mydiv
   width:100px;/*width of your image*/
   height:100px;/*height of your image*/
   background-image:url('image.file');

Ejemplo 4: agregar imagen a css

background-image:url(path);
background-repeat: no-repeat;
width:10px;
height:20px;

Ejemplo 5: cómo agregar imágenes en imágenes css

.parent
  position: relative;
  top:0;
  left:0;.image1
  position: relative;
  top:0;
  left:0;
  border:1px red solid;.image2
  position: absolute;
  top:30px;
  left:30px;
  border:1px green solid;

Sección de Reseñas y Valoraciones

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *