Bonjour, comment faire pour rendre responsive un texte.
Quand je diminue la taille de ma page, le texte ne diminue pas.
j'ai même un texte qui ce place sous la div dans la qu'elle il est censé être.
merci de vôtre aide !
Quand je diminue la taille de ma page, le texte ne diminue pas.
j'ai même un texte qui ce place sous la div dans la qu'elle il est censé être.
merci de vôtre aide !
<body id="bodyacceuil">
<header>
<section id="menudéroulant">
<div id="container">
<div id="boxdéroulant1">
<p>Logo</p>
<b>Menu</b>
</div>
</div>
</section>
<section id="cadretitre">
<div id="cadreparagraphe">
<h1>Fleures de villes</h1>
</div>
</section>
<section id="connexion">
<nav id="ongletconnexion">
<a href="#">Créer un compte</a>
<a href="#">Connexion</a>
<a href="#">Mot de de passe oublié </a>
</nav>
</section>
</header>
header{
background-color: orange;
height: 9vh;
width: 100%;
display: flex;
justify-content: space-between;
position: fixed;
font-family: 'Dancing Script', cursive;
font-size: 3vh;
}
#menudéroulant{
background-color: blue;
width: 30%;
height: 100%;
display: flex;
flex-direction: column;
}
#container{
background-color: green;
width: 40%;
height: 100%;
display: flex;
flex-direction: column-reverse;
}
#boxdéroulant1{
background-color: purple;
width: 100%;
height: 40%;
}
#cadretitre{
background-color: red;
width: 30%;
display: flex;
flex-direction: column;
justify-content:space-around;
}
#cadreparagraphe{
background-color: navy;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
font-size: 4vh;
height: 50%;
width: 100%;
font-family: 'Parisienne', cursive;
}
#connexion{
background-color: tomato;
width: 30%;
display: flex;
flex-direction: column-reverse;
}
#ongletconnexion{
background-color: yellow;
display: flex;
justify-content: space-around;
}
/* le style pour le footer en commun */
/* le style pour accueil.html */
#bodyacceuil{
margin: 0;
padding: 0;
background-color: teal;
display: flex;
flex-direction: column;
}