如何在提交按钮中设置多种字体颜色

时间:2016-10-27 16:19:48

标签: php html css

我坚持设计我的提交按钮。 我有一个mysqli查询,它给了我x个记录,我把一些数据放到一个提交按钮,以便导航到另一个页面上精确选择的数据集。所以,我所拥有的是一个包含多个按钮的列表,无论我点击哪个按钮,我都会看到新页面,这些数据用于进一步查询等。 这一切都很好,除了我想改变按钮上一行的颜色以集中注意力但无法解决问题。

<p>

有问题的行是$ new_This_Address。它应该只显示是否有东西要显示(到目前为止有效)但它也应该有不同的颜色,到目前为止我尝试了<style color"blue">height: 100%;之类的东西,但由于某种原因它不愿意接受这个作为HTML,而是将命令显示为文本。 怎么办?

2 个答案:

答案 0 :(得分:0)

使用CSS在您喜欢的任何地方设置文字格式。使用span元素是一种选择,但有很多。

<强> INLINE

$new_This_Address = "<span style='color: blue;'>This will be blue</span> and this is not";

CSS类

.blue{
    color: blue;
}

$new_This_Address = "<span class='blue'>This will be blue</span> and this is not";

答案 1 :(得分:0)

而不是使用<input type="submit">,而是使用<button>。您可以将html直接放在要评估的按钮内(您可以添加颜色和换行符)。

<button>
  <?php echo "ID: ", $T_ID, ", ", "customer-ID: ", $Cust_ID, ", ", "User: ", $User; ?><br />
  <?php
    echo $newFlat, $House, " ", $Street, ", ", $Town, ", ", $Postcode;
    echo '<span style="color: red;">' . $new_This_Address . '</span>'; 
  ?><br />
  <?php echo $Display_Task_Date, " ", $Task; ?><br />
  <?php echo $Price_Today, " "; ?>
</button>