用一个div覆盖2个div(ASP.NET Core)

时间:2017-06-14 08:52:39

标签: javascript jquery html css asp.net

我的视图中有2个部分。

以下是视图代码:

<section id="about" class="container content-section text-center">
    <div class="row">
        <div class="col-lg-8 col-lg-offset-2">
            <h2>About Grayscale</h2>
            <p>
               
            </p>
            <p>
              
            </p>
            <p>Н</p>
        </div>
       
</section>
<!-- Download Section -->
<section id="download" class="content-section text-center">
    <div class="download-section"> 
        <div class="container">
            <div>
                <h2 style="text-align: center;">Программа обучения VR</h2>
               <div style="width:30%;height:530px;float:left;border-style:solid;border-width:15px;border-color:#42DCA3">
                   <p style="padding-top:10px;font-size:30px;"><b>VR</b></p>
                   <p style="color:#FFD700;font-size:35px;"><b><strike>3600  грн </strike></b></p>
                   <p style="color:black;font-size:28px;"><b>2600  грн до 24.06.17 </b></p>
                   <div style="border-bottom: 1px solid #42DCA3;border-top: 1px solid #42DCA3;padding: 20px 0;margin-bottom: 20px;font-size:20px;">
                         6 недель, 12 занятий,36 часов<br>
                         + практика с HTC Vive<br>
                         + создание 3D объектов<br>
                         + создание ролика с камерой 360°
                   </div>
                   <div style="font-size:20px;">Старт 01.07.17</div>
                   <div style="margin: 0 auto;padding-top:20px;">
                <button class="btn btn-default btn-lg" data-toggle="modal" data-target="#myModal">Оставить заявку</button>
                </div>
               </div>
              
            </div>
           
        </div>
    </div>

Here is all code with css

我需要创建一个覆盖这两个div的块,就像在设计中一样

enter image description here

我怎么能这样做?

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

为了让价格块在左侧正确定位,它应该是第一个元素(请参阅下面的代码段)。 不知道你的意思是覆盖,因为这可以通过使用图像和深色作为DIV的背景来实现,因此不需要实际的叠加。

如果你需要叠加div,那么你可以使用绝对位置来做或使用弹性框。

<section id="about" class="container content-section text-center">
    <div class="row">
        <div class="col-lg-8 col-lg-offset-2">
            <h2>About Grayscale</h2>
            <p>
               
            </p>
            <p>
              
            </p>
            <p>Н</p>
        </div>
       
</section>
<!-- Download Section -->
<section id="download" class="content-section text-center">
    <div class="download-section"> 
        <div class="container">
            <div>
                
               <div style="width:30%;height:530px;float:left;border-style:solid;border-width:15px;border-color:#42DCA3; margin-right: 20px">
                   <p style="padding-top:10px;font-size:30px;"><b>VR</b></p>
                   <p style="color:#FFD700;font-size:35px;"><b><strike>3600  грн </strike></b></p>
                   <p style="color:black;font-size:28px;"><b>2600  грн до 24.06.17 </b></p>
                   <div style="border-bottom: 1px solid #42DCA3;border-top: 1px solid #42DCA3;padding: 20px 0;margin-bottom: 20px;font-size:20px;">
                         6 недель, 12 занятий,36 часов<br>
                         + практика с HTC Vive<br>
                         + создание 3D объектов<br>
                         + создание ролика с камерой 360°
                   </div>
                   <div style="font-size:20px;">Старт 01.07.17</div>
                   <div style="margin: 0 auto;padding-top:20px;">
                <button class="btn btn-default btn-lg" data-toggle="modal" data-target="#myModal">Оставить заявку</button>
                </div>
               </div>
              <h2 style="text-align: center; padding-top: 100px;">Программа обучения VR</h2>
<div style="padding: 10px;">01</br>02</br>03</br>04</br>05</br></div>
            </div>
           
        </div>
    </div>

<强>加成

这是一个简单的代码片段,位置绝对,如果这是你要找的。

.top-div {
  width: 400px;
  height: 200px;
  background: url('https://photos.smugmug.com/Stock-images/Westward-Expansion-Photos/gettysburg-battlefield-photos/i-S8rSqgg/1/70e2c6c8/S/Gettysburg%20Battlefield%20Photos-S.jpg');
}
.bottom-div {
  width: 400px;
  height: 400px;
  background: Orange;
  box-sizing: border-box;
  padding: 10px 10px 10px 200px;
}
.overlay-holder {
  position: relative;
}
.overlay {
  position: absolute;
  top: 100px;
  left: 10px;
  width: 180px;
  background: LightBlue;
  box-sizing: border-box;
  padding: 10px;
}
<div class="overlay-holder">
  <div class="overlay">
    This text is in the overlay<br/>
    This text is in the overlay<br/>
    This text is in the overlay<br/>
    This text is in the overlay<br/>
    This text is in the overlay<br/>
    This text is in the overlay<br/>
    This text is in the overlay<br/>
    This text is in the overlay<br/>
    This text is in the overlay<br/>
  </div>
</div>
<div class="top-div"></div>
<div class="bottom-div">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>