JSFiddle - React, Tailwind, and code Playground

HTML

<div id="wrap">
    <div id="zero">block0</div>
    <div id="one">block1 <a href="#one">Вниз&darr;</a></div>
    <div id="two">block2</div>
</div>

CSS

body {
    background: #eee;
}
#wrap {
    width: 302px;
    display: table;
}
#zero{
    background: white;
}
#one {
    background: yellow;
}
#two {
    background: green;
}

#wrap div {
    display: table-row-group;
}
#one:target{
    display: table-footer-group;
}