Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<button> <div> <span></span> </div> </button>
div { height: 100px; width: 100px; background: green; } span { position: absolute; width: 20px; height: 20px; background: red; }
div { height: 100px; width: 100px; background: green; display: flex; }
div { height: 100px; width: 100px; background: green; position: relative; } span { position: absolute; width: 20px; height: 20px; background: red; top: 0; left: 0; right: 0; bottom: 0; }