How can i display text inside a dive when its :hover? and when its not :hover the text hides again?
You could add a span inside the div with an id then use something like
#some-element { display: none; } #some-div:hover #some-element { display: block; }
See the CodePen example: http://codepen.io/ChrisUpjohn/pen/HBgiI
If you want your text to be indexed by search bots, you might want to consider another hiding option than display: none;. Perhaps:
display: none;
.visuallyhidden { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; }
More on this topic in this article: http://css-tricks.com/places-its-tempting-to-use-display-none-but-dont/
How can i display text inside a dive when its :hover? and when its not :hover the text hides again?
You could add a span inside the div with an id then use something like
See the CodePen example: http://codepen.io/ChrisUpjohn/pen/HBgiI
If you want your text to be indexed by search bots, you might want to consider another hiding option than
display: none;. Perhaps:More on this topic in this article: http://css-tricks.com/places-its-tempting-to-use-display-none-but-dont/