简体   繁体   English

如何更改 html 中自动输入文本的颜色

[英]how to change color of auto text typing in html

hallo everybody can u help me to change color.你好,大家可以帮我改变颜色。 how to use special color text.如何使用特殊颜色的文字。 we take a few examples such as:我们举几个例子,例如:

"discuss about HTML " “讨论HTML

in html text you want to change to a different color without the <color code> tags like在 html 文本中,您想要更改为不同的颜色,而不使用<color code>标签,例如

"discussing about HTML " from the HTML can be set with color. HTML 中的“讨论HTML ”可以设置颜色。 sorry im first here.对不起,我先在这里。

can we you use with css?我们可以和 css 一起使用吗? thank you!谢谢你!
this my example capture这是我的示例捕获

Yes, you can use the color CSS property.是的,您可以使用color CSS 属性。 Using the style attribute it would like this:使用style属性,它会像这样:

<span style="color: green;">Colored text</span>

Or, using a class:或者,使用 class:

 .green-text { color: green; }
 <span class="green-text">Colored text</span>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM