编写html中如何将中间某一个字符改变字体颜色?
html 里面怎么单独给一行中的某一个字加颜色???
你用span把那个字包起来,然后加颜色的样式
可以用表格。
<table width="500"yQbKxtfBe; border="0" bgcolor="#FF0000">
<tr>
<td>你输入的内容;<http://www.rixia.cc/td>
</tr>
</table>
<table width="500"yQbKxtfBe; border="0" bgcolor="#FF0000">
<tr>
<td>你输入的内容;<http://www.rixia.cc/td>
</tr>
</table>
html里面,怎么给一行文字中的某个字单独加上颜色?
var s = "我";
var html = document.body.innerHTML;
html = html.replace(new RegExp(s,"g"),s.fontcolor("red"));
document.body.innerHTML = html;
var html = document.body.innerHTML;
html = html.replace(new RegExp(s,"g"),s.fontcolor("red"));
document.body.innerHTML = html;
用html实现:一段文字,,移动到某个文字上面就改变这个字的颜色,但是其他字的颜色不改变
这个是效果图,各位朋友有什么好方法吗
在标签加一个 :hover,然后加入相应的属性即可
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title&ghttp://www.rixia.cct;无标题文档</title>
<style>
p:hover{
color:#FF0000;
}
</style>
</head>
<body>
<p>asfasfa</p>
<p>asfasfa</p>
<p>www.rixia.cc;asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<http://www.rixia.cc;p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
</body>
</html>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title&ghttp://www.rixia.cct;无标题文档</title>
<style>
p:hover{
color:#FF0000;
}
</style>
</head>
<body>
<p>asfasfa</p>
<p>asfasfa</p>
<p>www.rixia.cc;asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<http://www.rixia.cc;p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
<p>asfasfa</p>
</body>
</html>
如果是独立的单词,简单的方法:
可以为每个单词外加上标签,比如<p></p>然后可以加上样式 p:hover{color:yellow;}
可以为每个单词外加上标签,比如<p></p>然后可以加上样式 p:hover{color:yellow;}
文章标签: 生石花
本文标题: 编写html中如何将中间某一个字符改变字体颜色?
本文地址: http://www.rixia.cc/wenda/131920.html
上一篇:照波花怎么养?
相关推荐