我不知道这是否已经解决,但是flexbox提供了一个解决方案:
<div >Next section</div>.separator { display: flex; align-items: center; text-align: center;}.separator::before, .separator::after { content: ''; flex: 1; border-bottom: 1px solid #000;}.separator::before { margin-right: .25em;}.separator::after { margin-left: .25em;}如今,兼容性还不错(您可以添加所有旧的flexbox语法),并且可以正常降级。



