To show block with phrase under | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

To show block with phrase under

How to make next action with javascript and events? If i put cursor on word, block with phrase must be showed with inline-block display. Example I'll attach in first ansver.

5th Aug 2017, 10:46 PM
Илья баданин
Илья баданин - avatar
5 Answers
+ 3
There are many ways to achieve this behaviour... one among other doesn't require JS, but just Css: <span id="word">the word <span id="block">the over label</span> </span> (just the structure for quick explanation) Then you use the css pseudo selector :hover on #word and target #block child for show/hide. As is, your #block will be displayed inserted just next #word (technically appended)... So you need some more Css to position #block over the content without disturbing it when show/hide: check this code with commented css: https://code.sololearn.com/W6hN5mfQnrPF/?ref=app
6th Aug 2017, 7:13 PM
visph
visph - avatar
+ 4
Code edited to have the block displayed above and centered relatively to the text ;)
9th Aug 2017, 5:53 PM
visph
visph - avatar
+ 1
@visph thank you!
9th Aug 2017, 6:12 PM
Илья баданин
Илья баданин - avatar
5th Aug 2017, 10:47 PM
Илья баданин
Илья баданин - avatar
0
@visph thank you, before your answer I didnt know is it possible. Could the block display down the middle of word? How to make it display above the word and under the word(for example, if it cant fit under, it display above) http://imgur.com/lvQzGcf http://imgur.com/yrFS2Ss http://imgur.com/vF3dLby
9th Aug 2017, 5:47 PM
Илья баданин
Илья баданин - avatar