0

标题说明了一切,请注意,我只想用谷歌搜索,但由于某种原因,我的电脑目前很难连接到互联网,所以我不得不用非常糟糕的网络格式在手机上写下这篇文章。

编辑:现在在一台真实的计算机上,为了澄清我需要在 HTML 文档中设置字符串的文本颜色,最好是通过 CSS。只是一些简单的事情,像这样:

<!DOCTYPE html> <body> The word <whatever styling here...>RED<end styling...> should be red! </body>

在发布此内容时,我无法尝试太多,因为我的计算机出现了互联网问题,所以我真的不知道该怎么办。

4

5 回答 5

3

试试这个

 <span style="color: yourColor">your text</span>
于 2013-08-29T00:29:26.450 回答
0
<p style="color:red;">pizza</p>

在 HTML 中

p{
   color:red;
}

就像在css中一样

于 2013-08-29T00:29:37.110 回答
0

对于内联样式

<p style="color: blue"> text here </p>

如果您想要带有类 / id 等的 css .. 将其放入 css 文件或页面上的脚本标记中:

.textColor
{
    color: blue;
}

然后将类添加到元素

<p class="textColor"> text here </p>
于 2013-08-29T00:30:11.020 回答
0

你可以用这个

<font color='red' >your text here</font>

通过这个,您可以为我们的文本设置所需的颜色。您也可以在此处使用十六进制格式。

于 2013-08-29T00:31:18.643 回答
0

<p class="attention"></p>在你的 html

.attention{
   color:red;
}

在您的 css 文件中,例如。my_styles.css 包含在 html 的 HEAD 中,例如

<head>
    <link rel="stylesheet" type="text/css" href="my_styles.css">
</head>

以上是注意力是否会出现不止一次。如果它永远不会出现超过一次,您可以使用 id 而不是类,例如

<p id="attention"></p>在你的 html 和

#attention{
   color:red;
}

在你的 CSS 文件中

于 2013-08-29T00:31:21.650 回答