将颜色设置为句子?

时间:2015-07-26 03:55:44

标签: c# html css asp.net

如何将颜色设置为句子中的特定字符串以区别于其他字符串?

我尝试过使用粗体

using

我认为如果我以clour格式显示它会很好。如何实现这一目标

1 个答案:

答案 0 :(得分:1)

您可以使用内联样式标记设置特定句子的颜色:

标题:

<h1 style="color:blue">This is a Blue Heading</h1>

或者段落:

<p style="color:red">This is a red Paragraph</p>

或者您想要的任何地方:

<span style="color:blue">Some blue text</span>

即使在另一句话中:

<p>This is a boring paragraph <span style="color:green">with some amazing green text!</span> boring again...</p>

使用javascript变量:

<script>
var string = "This is a string";
document.getElementById("myText").style.color = "red";
document.getElementById("myText").innerHTML=string;
</script>

<span id="myText"></span>