定义一个框框的颜色.
学习
定义框的颜色
.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>定义一个带有颜色的边框</title> <style type="text/css" media="all"> p { border:medium solid red; border-color:red black blue green; } </style> </head> <body> <p>学习<a href="http://www.dreamdu.com/css/property_border-color/">定义框的颜色</a>.</p> </body> </html>