hover 썸네일형 리스트형 자바스크립트 마우스 호버시에 텍스트 출력 html 마우스를 올려보세요 css /* hoverText */ .hovertext { position: relative; border-bottom: 1px dotted black; } .hovertext:before { content: attr(data-hover); visibility: hidden; opacity: 0; width: max-content; background-color: black; color: #fff; text-align: center; border-radius: 5px; padding: 5px 5px; transition: opacity 1s ease-in-out; position: absolute; z-index: 1; left: 0; top: 110%; } .hovertex.. 더보기