Skip to content

Instantly share code, notes, and snippets.

@gunaevart
Created August 22, 2017 18:44
Show Gist options
  • Save gunaevart/9e96e77ec4d309f73721475738cdb1d6 to your computer and use it in GitHub Desktop.
Save gunaevart/9e96e77ec4d309f73721475738cdb1d6 to your computer and use it in GitHub Desktop.
Создание тултипа sass
-------HTML------
<div>
<a href="#" class="tooltiped" data-text="Название тултипа">Наведи на меня я тул-тип</a>
</div>
-------SASS------
.tooltiped{
position: relative;
&:before{
content: attr(data-text);
position: absolute;
padding: 3px 5px;
background: rgba(0, 102, 204, 1);
color: wheat;
border-radius: 5px;
text-transform: lowercase;
bottom: 100%;
transform: translateX(-50%);
white-space: nowrap;
opacity: 0;
left: -9999px;
transition: opacity .3s;
}
&:hover:before{
opacity: 1;
left: 50%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment