我试图通过以下方式为输入添加粗体字,但它不能显示为简单的计划文本
<input style="font-weight: bold;" name="lg" id="ur" type="hidden" required="" value="<? echo ?>" > <? echo ;?>
答案 0 :(得分:3)
您有type="hidden"
,因此输入不会显示。
我猜你将内联样式添加到了错误的输入中。
如果没有,那么您应该将类型更改为type="text"
。
答案 1 :(得分:1)
将代码更改为
<input style="font-weight: bold;" name="lg" id="ur" type="text" required="" value="<? echo ?>" > <? echo ;?>
答案 2 :(得分:0)
在评论中OP给出的解释之后,我想OP只是想从PHP变量或纯文本中打印文本。
为此,您不需要<input>
。您只需使用HTML标记并为其添加样式属性即可。最简单的解决方案是,
<strong><?php echo "Something"; ?></strong>