“Cómo hacer un centro de imágenes en HTML” Código de respuesta

imagen central html

<div class="verticalhorizontal">
    <img src="image.jpg" alt="centered image" />
</div>

<style>
.verticalhorizontal {
    display: table-cell;
    height: 300px;
    text-align: center;
    width: 300px;
    vertical-align: middle;
}
</style>
Xabos

Cómo alinear Fotos Center HTML

<!-- HTML here not CSS! -->
<!DOCTYPE html>
<head><!-- Title goes here --></head>
<body>
  <center><!-- Center's anythings -->
    <img src""><!-- Put image name (e.g example.jpeg) -->
  </center>
</body>
</html>
Outstanding Oystercatcher

Cómo hacer un centro de imágenes en HTML

<center>//The thing you want to center</center>
Wild Wolf

Respuestas similares a “Cómo hacer un centro de imágenes en HTML”

Preguntas similares a “Cómo hacer un centro de imágenes en HTML”

Más respuestas relacionadas con “Cómo hacer un centro de imágenes en HTML” en C#

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código