image.png
    I 实现上图效果方法

    1. .container{
    2. width: 230px;
    3. height: 93px;
    4. background: #655;
    5. padding: 10px;
    6. }
    7. .container div{
    8. background: tan;
    9. border-radius: 10px;
    10. padding: 15px;
    11. color: #ffffff;
    12. }

    II

    1. .container{
    2. background: tan;
    3. border-radius: .8em;
    4. padding: 1em;
    5. box-shadow: 0 0 0 .6em #655;
    6. outline: .6em solid #655;
    7. width: 230px;
    8. height: 93px;
    9. }
    10. 注: box-shadow 投影的扩张值不能小于 (根号2-1)*outline值