Float a div inside another div
P粉207483087
P粉207483087 2024-04-03 18:26:07
0
1
368

I need a div to float inside another div. Tried using position:fixed but the div now floats outside the parent div.

This is sample code. I need "Div to Float" to float inside "Div 1". Now it floats outside "Div 1" and behind "Div 2"

This is the code.

.wrapper {<!--from  www  .j  av a2s.c  o  m-->
   width:100%;
   height: 200px;
   overflow-y: scroll;
}

.container {
   width: 301px;
  margin: 0px auto;
  height: 1501px;
  background: green;
  position: relative;
}

.element {
   background:yellow;
   position:fixed;
   width:101px;
   height:71px;
   top:51px;
   right:0px;
   left:769px;
   border:2px solid blue;
}
<div class="wrapper">
  <div class="container">
    Div 1
    <div class="element">Div to float</div>
  </div>
</div>
<div class="container" style="margin-top: 30px; background: purple">Div 2</div>

What have I tried?

.wrapper {<!--from  www  .j  av a2s.c  o  m-->
   width:100%;
   height: 200px;
   overflow-y: scroll;
}

.container {
   width: 301px;
  margin: 0px auto;
  height: 1501px;
  background: green;
  position: relative;
}

.element {
   background:yellow;
   position:fixed;
   width:101px;
   height:71px;
   top:51px;
   right:0px;
   left:769px;
   border:2px solid blue;
}
<div class="wrapper">
  <div class="container">
    Div 1
    <div class="element">Div to float</div>
  </div>
</div>
<div class="container" style="margin-top: 30px; background: purple">Div 2</div>

What are my expectations?

I need "Div to Float" to float inside "Div 1".

What is the result now?

Now it floats outside "Div 1" and behind "Div 2"

P粉207483087
P粉207483087

reply all(1)
P粉041881924
.container {
    position:relative;
}
.element{
position:absolute;
}

I don't fully understand what you mean by "floating", but this code will place your div.element inside a div.container

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!