Здравствуйте, если 2 раза нажат таб window1 скроется и будет отображатся window2? Почему ето приисходит и как ето исправить
<!DOCTYPE html>
<body>
<div class="body">
<div>
<button>Window1</button>
</div>
<div>
<button>Window2</button>
</div>
</div>
</body>
<style>
.body {
display: flex;
flex-direction: row;
width: 100%;
position: relative;
overflow: hidden;
}
.body>div {
display: flex;
flex-direction: column;
flex-shrink: 0;
width: 100%;
}
</style>
</html>