body bgcolor="red7",为什么背景会显示为绿色,而不是红色?
<!DOCTYPEhtml><html><head><metacharset="utf-8"><title>菜鸟教程(runoob.com)</title></head>...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body bgcolor="red7">
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>The old bgcolor attribute only works on the body element.</p>
<p>For future proof HTML, use styles instead:</p>
</body>
</html> 展开
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body bgcolor="red7">
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>The old bgcolor attribute only works on the body element.</p>
<p>For future proof HTML, use styles instead:</p>
</body>
</html> 展开
展开全部
<body bgcolor="red7">
当色彩英文字母代码(如:white, red, blue,green,goldenrod....)不在标准范围内时,浏览器自动按字母的16进制值来解释。当字串超过3个时每2个为一组,如上述red7将划分成:re, d7,00,若字母不在a-f内则舍弃,因此上述字串变为:e,d7,00,其对应的16进制值分别为:14,215,0,这是一种绿色,效果与CSS的 rgb(14, 215, 0) 一样。
当色彩英文字母代码(如:white, red, blue,green,goldenrod....)不在标准范围内时,浏览器自动按字母的16进制值来解释。当字串超过3个时每2个为一组,如上述red7将划分成:re, d7,00,若字母不在a-f内则舍弃,因此上述字串变为:e,d7,00,其对应的16进制值分别为:14,215,0,这是一种绿色,效果与CSS的 rgb(14, 215, 0) 一样。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询