Border line next to text

后端 未结 5 708
予麋鹿
予麋鹿 2021-01-22 12:00

I have a p tag. I want a border line next to it.

Categories

5条回答
  •  天命终不由人
    2021-01-22 13:01

    Use a pseudo element

    Jsfiddle Demo

    CSS

    p {
        font-size: 12px;
        margin-bottom: 2px;
        overflow: hidden;
        position: relative;
    
       }
    
    p:after {
        content:"";
        position: absolute;
        border-bottom:1px solid grey; /* border-size & color are now controllable */
        width:100%;   
        height:1em;
        display: inline;
        margin-left: 1em;
    }
    

提交回复
热议问题