Hide title from tooltip
问题 I'm making a tooltip using CSS. Now using the following html code <div title="This is some information for our tooltip." class="progress3"> </div> and the following CSS .progress3{ display: inline; position: relative; } .progress3:hover:after{ background: #333; background: rgba(0,0,0,.8); border-radius: 5px; bottom: 26px; color: #fff; content: attr(title); left: 20%; padding: 5px 15px; position: absolute; z-index: 98; width: 220px; content: attr(title); } .progress3:hover:before{ border: