search

Home  >  Q&A  >  body text

Make text bold.

Looks like I have no problem, but I need to make this more bold.

.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;
}

I tried the attribute font-weight: "bolder" but I want it to be more bold. Is there any other way?

P粉724737511P粉724737511502 days ago598

reply all(1)I'll reply

  • 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;                                
    }

    You can use font-weight.

    reply
    0
  • Cancelreply