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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
| <!DOCTYPE html>
<html>
<head>
<title>Test</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<style>
* {
box-sizing: border-box;
}
*::-webkit-scrollbar {
display: none;
}
body {
margin: 0em;
padding: 0em;
color: #000000;
}
div {
display: flex;
}
.liste {
/* Pour avoir un défilement horizontal */
white-space: nowrap;
overflow-y: hidden;
text-overflow: ellipsis;
border-width: 2px;
border-style: solid;
border-color: #00FF00;
}
.titre {
width: 10em;
border-width: 2px;
border-style: solid;
border-color: #0000FF;
}
</style>
</head>
<body>
<header>
<div>
<section class="liste">
Que du texte | Que du texte | Que du texte | Que du texte | Que du texte | Que du texte | Que du texte | Que du texte | Que du texte | Que du texte | Que du texte | Que du texte
</section>
<section class="titre">
<span id="titre_01">Titre de la section</span>
</section>
</div>
</header>
<main>
</main>
<footer>
</footer>
</body>
</html> |