CSS: Set border to half width

前端 未结 7 888
说谎
说谎 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:24

    You could do this:

        .box {
            position: relative;
            width: 500px;
        }
        .border {
            position: aboslute;
            background: #ccc;
            left: 100px;
            bottom: 0;
            width: 300px;
            height: 1px;
        }
        

    But there are infinite possibilities. Some are more semantically correct than others; this solution is simply a quick fix.

提交回复
热议问题