ccc

CSS: Centrar verticalmente con flex

 <html>
<head>
<style>
.box {
  display: flex;
  align-items: center;
  justify-content: center;
  width:400px;
  height:300px;
  border:1px solid #000;
}

.box img {
  width: 100px;
  height: 100px;
}
</style>
</head>
<body>
<div class="box">
<img src="tu-imagen.png"/>
</div>
</body>
</html>

No hay comentarios:

Publicar un comentario