recherche

Maison  >  Questions et réponses  >  le corps du texte

Mettez le texte en gras.

On dirait que je n'ai aucun problème, mais je dois rendre cela un peu plus audacieux.

.txt {
     font-weight: bolder;
     justify-content: left;
     text-align: left;
     margin-top: 100px;
    /* font-family: 'Redwinger Personal Use', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    */
     color: rgb(0, 0, 0);
     margin-bottom: 750px;
     margin-left: 25px;
}

J'ai essayé l'attribut font-weight:"bolder" mais je veux qu'il soit plus gras. Est-ce qu'il y a un autre moyen?

P粉724737511P粉724737511540 Il y a quelques jours626

répondre à tous(1)je répondrai

  • P粉127901279

    P粉1279012792023-07-19 10:28:16

    .txt {
        font-weight: 900;
        justify-content: left;
        text-align: left;
        margin-top: 100px;
        color: rgb(0, 0, 0); 
        margin-bottom: 750px;
        margin-left: 25px;                                
    }

    Vous pouvez utiliser font-weight.

    répondre
    0
  • Annulerrépondre