I am trying to make a message which displaces on hover. My code:
CSS:
.showtext:hover:before {
content: attr(data-content);
padding: 0.8em 1em;
position: absolute;
color: #fff;
background: #47a3da;
margin-left: 5%;
}
HTML
<span class="showtext" data-content="Message">Hover Me</span>
I have set margin-left
to 5%
but it doesn't work all the time. It overlaps when the text inside span is longer, so how can I set it to auto margin-left
a little, say 10px
?
I have tried to set to auto
but it didn't work.
Also, how can I add a triangle at the left of the message so it points on the span text.