前景色:color。color對border的影響:
<p style="width:100px;height:100px;color:#F00;border-style:dotted;background:#03C;">前景色影響邊框顏色</p>
可以看到p邊框的顏色是和color的顏色是一樣的。
背景:元素的背景區(qū)包含前景之下知道邊框外邊界的所有空間,包含內(nèi)容框、內(nèi)邊距,且延伸到邊框。如下代碼:

Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標(biāo)題文檔</title>
</head>
<body>
<div style="width:100px;height:200px;margin:100px auto;background:#03C;border:5px dotted #FC0;">
邊框問題!
</div>
</body>
</html>

可見,在IE6、7,背景沒有延伸到border之下。
Tag標(biāo)簽: background border color