<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
section {
display: flex;
width: 50%;
height: 200px;
margin: auto;
border-radius: 10px;
border: 3px dashed #1c87c9;
}
p {
margin: auto; /* Important */
text-align: center;
}
</style>
</head>
<body>
<section>
<p>Je suis centré avec Flexbox!</p>
</section>
</body>
</html>