Spaces:
Running
Running
File size: 894 Bytes
0dc23f2 85b7a74 f078ffd 85b7a74 0dc23f2 85b7a74 0dc23f2 85b7a74 0dc23f2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mise en page trois colonnes</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
display: flex;
height: 100vh;
}
.column {
flex: 1;
padding: 20px;
border: 1px solid #ccc;
}
.column:not(:last-child) {
margin-right: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="column">
<p>Colonne 1</p>
</div>
<div class="column">
<p>Colonne 2</p>
</div>
<div class="column">
<p>Colonne 3</p>
</div>
</div>
</body>
</html>
|