Bold the title of a span [duplicate]

0

Hello,

I need to put my title text in bold.

<span title="teste">teste</span>
    
asked by anonymous 23.10.2018 / 22:13

1 answer

0

Try this:

<span class="teste" title="teste">teste</span>

.teste {
   font-weight:bold;
}

Good luck.

    
23.10.2018 / 22:54