<DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <titlt>css盒模型边框设计</title> <style> .box{width:100px;height:100px;border:1px /*solid double dashed 三种不同样式*/ #ccc; .main{width:100px;height:100px;/*border-top border-left border-right border-bottom 四条不同的边进行设置:*/ 1px solid red;border-redius:25px;} </head> <div class="box"></div> <div class="main"></div> </html>