我对编程没有任何线索。我在网站上填写简历,他们希望我大胆回答。我相信它是html格式。检查显示
<input type="TEXT" name="fn" value size="20" maxlength="40"
id="fn" onblur="this.value=spaceTrim(this.value);
validName(this,false,null,null,null,true,false);">
我如何才能使答案变得粗体?
答案 0 :(得分:1)
<strong> tags </strong>
您可以使用“强标记”
使文字变为粗体
答案 1 :(得分:0)
您需要指定style
代码的input
属性:
style="font-weight:bold"
答案 2 :(得分:0)
您可以font-weight: bold
使用style
。
<input type="TEXT" name="fn" value size="20" maxlength="40"
id="fn" onblur="this.value=spaceTrim(this.value);
validName(this,false,null,null,null,true,false);" style="font-weight: bold">
&#13;