So I have my button below, styled with CSS, and already declared as div in the html file. When the mouse hovers over it, I want to display a small snippet of text, e.g. "Get Info".
I tried selector #GetInfo :hover { but it changed all the style and position of my button.
How can I achieve this?
#GetInfo{
    cursor: pointer;
    width: 33.2px;
    height: 33.2px;
    display: inine-block;
    z-index:1;
    position: absolute;
    background-color: rgba(219 ,63,63,.5);
    text-align: center;
    font-size:23px;
    color: white;
    top:19px;
    right:19px;
}
 
     
     
    