使用HTML CSS只让一部分<h5>变红。

问题描述 投票:0回答:1

我会 只是 想让strSalePrice 红色. 如何才能做到这一点?

<h5><s>€<?php echo ($datas[19]['intPrice']); ?></s><b> €<?php echo ($datas[19]['strSalePrice']); ?> </b></h5>

结果:24.99欧元 19.99欧元

注:24.99被划掉了。

css
1个回答
0
投票

只要用 <span>标签来标记你想要的部分,并为其添加样式。

.make_red {
  color: #FF0000;
}
<h5><b>$ <span class="make_red"> Your_sale_price</span> </b></h5>

1
投票

你可以使用html内联样式。

<h5>
  <s>€<?php echo ($datas[19]['intPrice']); ?></s>
  <b>€<?php echo '<span style="color:red">'.($datas[19]['strSalePrice']).'</span>' ?> 
  </b>
</h5>
© www.soinside.com 2019 - 2024. All rights reserved.