1 пунк 2 пунк 3 пунк
1 пунк
2 пунк
3 пунк
#menu_div { display:grid; } #menu_div_content{ border: black; border-radius: 30px; background-color: rgb(219, 219, 219); display: none; position: absolute; width: 200px; } #menu_div:hover #menu_div_content{ display: block; } #btn_menu{ border: none; background-color: rgba(240, 248, 255, 0); cursor: pointer; right: 0px; justify-items: end; } #menu_div_content > p{ bottom: 10px; margin: 10px; top: 10px; left: 20px; border-radius: 10px; width: 180px; text-align: center; justify-items: center; align-items: center; } #menu_div_content > p:hover{ background-color: darkgray; } #menu_out_div{ right: 0px; justify-items: end; }
#menu_div { position: fixed; top: 0; right: 0; display: grid; } #btn_menu { justify-self: end; }