如何在PHP中使用提交类型在输入中添加fontawesome图标

时间:2018-11-27 13:04:26

标签: php html css font-awesome

我尝试了等值的unicode,并在CSS中添加了fontawesome。但没有解决。我正在尝试将删除图标放在表格中。有人可以告诉我如何在值标签中添加fontawesome图标吗?

HTML

<form method="post">
    <input type="hidden" name="post_id" value="<?php echo $post_id ?>">
    <?php 
        echo '<td><input type="submit" name="delete" value="&#xf2ed;" class=""></td>';
    ?>
</form>

css

input[type="submit"] {
  font-family: "Font Awesome 5 Free"; 
}

1 个答案:

答案 0 :(得分:0)

您必须将Font Awesome的链接添加到您的head标签中,这样才能正常工作。

第二个选择是将input包裹在div中,并在icon的{​​{1}}中设置:before

div
input[type="submit"] {
 font-family: "Font Awesome 5 Free"; 
}
.secodOption:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2ed";
  font-weight: 900;
  position: absolute;
  padding-top: 2px;
  padding-left: 7px;
}
input[value=""]{
        width: 30px;
    }