这里边框可以设置粗细,颜色,还有线型,那填充部分边界部分怎么设置不了颜色等其他属性

来源:12-7 长胖长高点--宽度和高度

weibo_小瓜大爷啊啊啊啊啊_0

2016-05-08 12:53

这里边框可以设置粗细,颜色,还有线型,那填充部分边界部分怎么设置不了颜色等其他属性

写回答 关注

3回答

  • missshannon
    2016-05-08 13:20:57
    已采纳

    我觉得用background color可以达到你要的效果

    <!DOCTYPE html>    

    <html>    

    <head>    

    <title>Box example</title>    

    <style type="text/css">    

    /* No borders set */    

    ul {    

    background: yellow;    

    margin: 12px 12px 12px 12px;    

    padding: 3px 3px 3px 3px    

    }    

    /* No borders set */    

    li {    

    color: white;                /* text color is white */    

    background: blue;            /* Content, padding will be blue */    

    margin: 12px 12px 12px 12px;    

    padding: 12px 0px 12px 12px; /* Note 0px padding right */    

    list-style: none             /* no glyphs before a list item */    

    }    

    li.withborder {    

    /*border-style: ridge;*/    

    /*border-width: medium;*/        /* sets border width on all sides */    

    /*border-color: lime;*/    

    border-style:none    

    }    

    </style>    

    </head>    

    <body>    

    <ul>    

    <li>First element of list</li>    

    <li class="withborder">Second element of list is    

    a bit longer to illustrate wrapping.</li>    

    </ul>    

    </body>    

    </html>    


    weibo_...

    非常感谢!

    2016-05-09 11:58:11

    共 3 条回复 >

  • shiyunlaidev
    2016-05-08 13:05:23

    padding:0px;

     border:10px solid blue; 

    补充楼上

  • 释静清宁勿语
    2016-05-08 13:02:56

     border:10px solid blue; 你可以选择加大边框像素,从而仔细了解颜色的变换

    weibo_...

    这里也只是设置了边框的颜色呀

    2016-05-08 21:04:44

    共 1 条回复 >

初识HTML(5)+CSS(3)-升级版

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

1225294 学习 · 18230 问题

查看课程

相似问题