How can I put a vertical line down the center of a div?

后端 未结 8 1905
陌清茗
陌清茗 2020-12-24 00:59

How do I put a vertical line down the middle of a div? Maybe I should put two divs inside the div and put a left border on one and a right border on the other? I have a DIV

8条回答
  •  执笔经年
    2020-12-24 02:02

    Maybe this can help you

    .here:after {
        content:"";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 50%;
        border-left: 2px dotted #ff0000;
        transform: translate(-50%);
    }
    
    div {
        margin: 10px auto;
        width: 60%;
        height: 100px;
        border: 1px solid #333;
        position:relative;
        text-align:center
    }
    Content

    Here's is a JSFiddle demo.

提交回复
热议问题