CSS: Set border to half width

前端 未结 7 905
说谎
说谎 2021-02-12 21:57

Consider following:

...
.box{ width:500px; border-bottom: 1px solid #ccc; }

It will set the bot

7条回答
  •  我寻月下人不归
    2021-02-12 22:35

    .box {
        padding-bottom: 10px;
        background-image: linear-gradient(#ccc,#ccc);
        background-size: 50% 2px;
        background-position: bottom left;
        background-repeat: no-repeat;
    }
    

提交回复
热议问题