HTML layout Problem with css ? Float issu | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

HTML layout Problem with css ? Float issu

I am facing problem to solve layout issue. #container and #mid-banner are hiding behind layout. What is problem with my CSS code. My code-: https://codepen.io/jobnmk/pen/VwaVWGx

22nd Sep 2020, 7:02 PM
PRADEEP KHILLARE
PRADEEP KHILLARE - avatar
2 Answers
+ 1
Use the z-index style. The Z-index lets you control what should be behind and what should be in the front. Your Welcome :D
23rd Sep 2020, 2:31 AM
:DD
:DD - avatar
+ 1
For explanation of Taehodz :D 's answer. Z-index property allows to determine which element should be placed before or above the other element . Eg .square{ z-index:5; } .circle{ z-index: 8 ; } In the above code circle element would be placed ahead of square because it has more z-index. For more info this is the link of solo learn CSS course. This link explains about CSS z-index property https://www.sololearn.com/learn/CSS/1118/
23rd Sep 2020, 6:12 AM
Raghu Rao
Raghu Rao - avatar