Maybe a Css problem? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Maybe a Css problem?

I wrote this Fill in the blank game. In this I wrapped all content other than heading in the #container div . But when I ran the code and click on input text box and the keyboard appears the word goes up and overlaps the heading...I'm not a pro at these and this is kind of my first project. https://code.sololearn.com/Wn6XuCpeicOq/?ref=app

15th Mar 2023, 12:22 PM
Mayank Chandratre
Mayank Chandratre - avatar
2 Answers
+ 4
Mayank Chandratre try changing the #wordbox css for top to 150px instead of 30% #wordbox{ ... top: 30%. to top:150px; } also, using % for position and relying on translate to reposition things is not very reliable. You might have to read up on containers(flex, grid, etc) and use them properly to get more reliable results. In your javascript, I would also recommend to use textContent intead of innerHTML if you are just changing the text of your DOM element. https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent
15th Mar 2023, 12:46 PM
Bob_Li
Bob_Li - avatar
+ 2
Thanks...It worked. And Yes I will make sure to read more about it.
15th Mar 2023, 1:36 PM
Mayank Chandratre
Mayank Chandratre - avatar