web-dev-qa-db-fra.com

Comment pouvons-nous mettre en gras uniquement le nom de la table td tag pas la valeur

Existe-t-il un moyen de mettre CC Quid, numéro de demande, titre de demande et de la même manière en gras, je ne veux pas que leur valeur soit en gras. Toute suggestion sera appréciée..

html = html + "<table border ='0'>";
    html= html + "<tr>";
    html =html + "<td>CC Quid: " +(data.response.docs[0].c_cc_guid)+"</td></tr>";
    html =html + "<tr><td>Application Number: " +(data.response.docs[0].c_application_number)+"</td></tr>";
    html =html + "<tr><td>Application Title: " +(data.response.docs[0].c_application_title)+"</td></tr>";
    html =html + "<tr><td>Application Type Name: " +(data.response.docs[0].c_application_type_name)+"</td></tr>";
    html =html + "<tr><td>Case Mgr Name: " +(data.response.docs[0].c_case_mgr_name)+"</td></tr>";
    html =html + "<tr><td>Filed Date: " +(data.response.docs[0].c_filed_date)+"</td></tr>";
    html =html + "<tr><td>Lead Atny Name: " +(data.response.docs[0].c_lead_atny_name)+"</td></tr>";
    html =html + "</table>";
8
arsenal

Entourez ce que vous voulez être audacieux avec:

<span style="font-weight:bold">Your bold text</span>

Cela irait dans votre balise <td>.

22
Ord

Enveloppez le nom dans une étendue, donnez-lui une classe et attribuez un style à cette classe:

<td><span class="names">Name text you want bold</span> rest of your text</td>

style:

.names { font-weight: bold; }
4
kinakuta

Je comprends peut-être mal votre question, alors excuses-moi si je le suis.

Si vous cherchez les mots "Quid", "Numéro de la demande", etc. en gras, insérez-les dans les balises <strong>:

<strong>Quid</strong>: ...

J'espère que cela pourra aider!

1
inkedmn

tu peux essayer ça

td.setAttribute("style", "font-weight:bold");
0
Muhammad Aamir Ali

Essaye ça

.Bold { font-weight: bold; }
<span> normal text</span> <br>
<span class="Bold"> bold text</span> <br>
<span> normal text</span> <spanspan>

0
Sandeep Suthar