<!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> <style type="text/css"> /* div默认是没有边框呃。 */ div{ width:100px; height:100px; border-style:dotted solid double ; /* 设置边框的样式 上 右 下 左*/ border-color:#F00; border-bottom-color:#0FF; border-top-width:100px; } </style> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <body> <div>这个是第一个div</div> </body> </html>