Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
.button { ... position: relative; } .button:after { content: ''; width: 100vw; height: 1px; position: absolute; bottom: 0; left: 0; background: red; }
<div class="button-wrap"> <button>Lorem ipsum.</button> </div>
.button-wrap{ border-bottom: 1px solid red; } .button-wrap button{ ... margin-bottom: -1px; }