J'ai une div avec 70% de largeur et voici ce que je veux faire:
Est-ce possible avec seulement css? Voici mon code:
.parent {
width:70%;
height:auto;
min-height:100px;
background:red;
font-size:10vw;
}
Please help me to change the font-size dynamically to the parent class
<hr>
<div class="parent">
This Text
</div>
Note: la taille div est sensible, c’est important .
Peut-être pas tout à fait ce que vous cherchez, mais quelque chose - Vous pouvez créer à la fois la police et l'élément relatifs à la largeur de la vue.
p {
font-size: 5vw;
background-color: red;
width: 50vw;
}
<p>
I'm a P!
</p>
Il vous suffit d'ajouter display: inline;
dans votre code
.parent {
width:70%;
height:auto;
min-height:100px;
background:red;
font-size:10vw;
display: inline;
}
<!DOCTYPE html>
<html>
<head>
<style>
.parent {
width:70%;
height:auto;
min-height:100px;
background:red;
font-size:10vw;
display: inline;
}
</style>
</head>
<body>
<div class="parent">
This Text
</div>
</body>
</html>
**You can change font-size:10vh;**
.parent {
width:70%;
height:auto;
min-height:100px;
background:red;
color:white;
font-size:10vh;
}
Please help me to change the font-size dynamically to the parent class
<hr>
<div class="parent">
Text
</div>