css盒模型边框样式设计

Original 2019-03-01 22:57:13 217
abstract:<DOCTYPE HTML> <html> <head>     <meta charset="utf-8">     <titlt>css盒模型边框设计</title>    
<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>


Correcting teacher:韦小宝Correction time:2019-03-02 09:13:44
Teacher's summary:写的还可以吧 css的边框样式可以设计出很多种 没事的时候记得多去练习练习

Release Notes

Popular Entries