Vertical divider CSS

后端 未结 2 1907
Happy的楠姐
Happy的楠姐 2021-02-03 22:11

I am creating a vertical divider, that works fine. But the CSS is cumbersome.

The CSS is:

.headerDivider1 {
border-left:1px solid #38546d;height:80px;pos         


        
2条回答
  •  猫巷女王i
    2021-02-03 22:18

    and

    .headerdivider {
        border-left: 1px solid #38546d;
        background: #16222c;
        width: 1px;
        height: 80px;
        position: absolute;
        right: 250px;
        top: 10px;
    }
    

提交回复
热议问题