When the mouse hovers over the element, an opaque "cloud" appears and I want to completely hide the underline that is normally displayed. The underline is created by using a border-bottom
on the parent div.
.element_style{
width:98%;
line-height:40px;
font-family: 'Lato';
font-weight: 300;
font-size:18px;
/*Border at the bottom*/
border-bottom: 1px solid rgba(0, 0, 0, 0.18);
position:relative;
}
If you slowly move down within the element, just below where the underline should be, you'll see the underline reappear. How can I prevent this behavior from happening?