Exemple de code de la propriété CSS min-width.
<style>
.min-width{
min-width : 150px;
max-width : 500px;
}
.exemple{
width : 80%;
border:1px solid red;
font-weight:normal;
}
</style>
.identifiant{ width : 80%; min-width: 150px; max-width : 500px; border:1px solid red; }
<div class="exemple min-width">min-width min-width </div>
Interprétation du code de la propriété min-width CSS par votre navigateur.
.identifiant{ width : 80%; min-width: 150px; max-width : 500px; border:1px solid red; }
min-width min-width
Interprétation normale du code de la propriété CSS min-width (copie d'écran).