html - 如何在同一个地方的所有div上制作图像

标签 html css

html {
    font-family: 'Open Sans', sans-serif;
}

body {margin: 0;
    padding: 0;
}

#wrapper {
    padding-left:50px;
    padding-top:30px;
}

#third, fifth {
    background-color:#E8E8E8 ;
}
 
img[src^="my_menu.png"] {
    z-index:10;
}
 
#second, #third, #fourth, #fifth {
    width:100%;
    height:100vh;
    padding:0px;
    margin:0;
    margin-left:auto;
    margin-right:auto;
    background-color:white;
    z-index:-1;
} 

#second {
    width:100%;
    height:100vh;
    padding:0px;
    margin:0;
    margin-left:auto;
    margin-right:auto;
    margin-top:100vh;
}

#fourth, #second {
      background-color:grey;
}
<!DOCTYPE html>
<html>
    <head>
        <title>Add gospel Přerov</title>
        
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width" />
        <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
    </head>
    
    <body>
        <div class="wrapper">
          <div id="second">     
          </div> 
           
          <div id="third">      
          </div> 
              
          <div id="fourth">
          </div>
              
          <div id="fift">
          </div>  
        </div>
    </body>
</html>

我正在为我的客户制作一个网站,我需要帮助。我想制作 4 个高度为 100vh 且宽度等于 100% 的 div。这就是我所拥有的。现在,我需要将所有这些 div 的箭头朝下放在底部中心的某个位置。怎么做?

最佳答案

我不确定这是否是您想要的,但根据您的问题,这可能是您想要实现的。刚刚创建了一个 div 里面有一个图像(你也可以使用 background 属性来显示箭头图像)

html * {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
.full {
  position: relative;
  height: 100vh;
  width: 100%;
}
.full:nth-child(1) {
  background: cyan;
}
.full:nth-child(2) {
  background: magenta;
}
.full:nth-child(3) {
  background: yellow;
}
.full:nth-child(4) {
  background: lightgray;
}
.arrow-down {
  position: absolute;
  bottom: 10px;
  width: 32px;
  height: 32px;
  left: calc(50% - 16px);
}
.arrow-down > img {
  width: 100%;
}
<div class="full">
  <div class="arrow-down">
    <img src="https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png" alt="arrow-down">
  </div>
</div>
<div class="full">
  <div class="arrow-down">
    <img src="https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png" alt="arrow-down">
  </div>
</div>
<div class="full">
  <div class="arrow-down">
    <img src="https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png" alt="arrow-down">
  </div>
</div>
<div class="full">
  <div class="arrow-down">
    <img src="https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png" alt="arrow-down">
  </div>
</div>

关于html - 如何在同一个地方的所有div上制作图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33202627/

相关文章:

php - 如何为输入类型 'datetime-local' 设置值?

html - Foundation 6.4.1 - 如何使下拉菜单在其父项下居中?

javascript - 在 fancybox 中定位缩略图

html - 如何阻止 <nav> 在中间 split

php - 在本地 JavaScript 文件中调用外部 PHP 文件?

php - 从数据库中获取两个图像路径并将它们循环显示在 slider 中

HTML 源 newlike 在对象之间留出空间 - 如何摆脱这个?

html - CSS 上的动态网格

javascript - 如何在highcharts中为标题添加边框

javascript - 我们可以提交一个jsp表单两次吗?