用伪类的方式给div加分割线,确保每个div宽度相同

稳住别慌 / 2023-08-30 / 原文

     div1:not(:last-child) ::after {
                content: '';
                display: block;
                width: 1px;
                height: 24px;
                background-color: rgb(224, 224, 224);
                position: absolute;
                right: -12px;
            }