编辑:现在在一台真正的计算机上,澄清我需要在HTML文档中设置字符串的文本颜色,最好是通过CSS。简单的事情就像这样:
<!DOCTYPE html
>
<body
>
The word <whatever styling here...
>RED<end styling...
> should be red!
</body
>
由于我的电脑遇到网络问题,因此我发布此内容时无法尝试太多,所以我真的不知道该怎么办。
答案 0 :(得分:3)
试试这个
<span style="color: yourColor">your text</span>
答案 1 :(得分:0)
<p style="color:red;">pizza</p>
in html
p{
color:red;
}
就像在css中那样
答案 2 :(得分:0)
表示内联样式
<p style="color: blue"> text here </p>
如果你想要css与类/ ids等.. 把它放在css文件或页面上的脚本标签中:
.textColor
{
color: blue;
}
然后将类添加到元素
<p class="textColor"> text here </p>
答案 3 :(得分:0)
<p class="attention"></p>
.attention{
color:red;
}
在你的css文件中,例如。你在html的HEAD中包含的my_styles.css,例如
<head>
<link rel="stylesheet" type="text/css" href="my_styles.css">
</head>
以上是注意力不止一次出现。 如果它永远不会出现一次,你可以使用id而不是类,例如
您的HTML和中的 <p id="attention"></p>
#attention{
color:red;
}
在你的css文件中
答案 4 :(得分:-1)
您可以使用此
<font color='red' >your text here</font>
通过此,您可以为我们的文本设置所需的颜色。您也可以在这里使用十六进制格式。