响应高度与相对分区内的绝对Div

时间:2013-11-06 15:50:43

标签: php html css height

我正在做一个关于页面的事情。我已将每个人的照片设置为相对定位div的绝对内部。绝对定位的div包含两张相互叠加的照片,当您悬停时,将显示该人的另一张照片。相对定位的div还包含该人的姓名和电子邮件。

它也很流畅。所以我将相对div的宽度设置为100%,并且图像通过浏览器流畅地调整大小。我的问题是高度保持不变,我不能让它响应浏览器。我已经尝试将高度设置为100%,但这不是技巧。

非常感谢任何帮助!

这是我的html:

<section class="team clearfix">
<?php
$custom_query = new WP_Query( array( 'post_type' => 'team', 'orderby' => 'title', 'order'         => 'ASC' ));
while($custom_query->have_posts()) : $custom_query->the_post(); ?>
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
  <div class="inner">
    <div class="image-container">
     <?php
        $image2 = get_field('alt_photo');
          if( $image2 ): ?>
          <img class="bottom" src="<?php echo $image2['url']; ?>" alt="<?php echo  $image2['alt']; ?>" title="<?php echo $image2['alt']; ?>">

      <?php endif; ?>

      <?php
      $image = get_field('main_photo');
        if( $image ): ?>
          <img class="top" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" title="<?php echo $image['alt']; ?>">

      <?php endif; ?>
      </div>

      <div class="entry-summary">
        <h2 class="entry-title"><?php the_title(); ?></h2>
      <?php
      if(get_field('email')) { ?>
        <a href="mailto:<?php echo get_field('email'); ?>">email</a>
      <?php } ?>
    </div>
    <?php //the_content(); ?>

  </div>
  </article>
  <?php endwhile; ?>

 <?php wp_reset_postdata(); // reset the query ?>
 </section>

&安培;我的css:

section.team .image-container {
position: relative;
margin: 0 auto;
width: 100%;
height: 512px;
}

section.team .image-container img{
position: absolute;
left:0;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
}

section.team .image-container img.top:hover{
opacity:0;
}

section.team {
padding: 30px 0;
text-align: center;
padding-left: 10px;
padding-right: 10px;
}

section.team .hentry {
float: left;
position: relative;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
}

section.team .hentry .entry-summary {
min-height: 50px;
}

section.team .hentry .entry-summary .entry-title {
font-family:'Avenir LT W02 95 Black', "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
font-size: .75em; /* 12px */
line-height: 1em; /* 14px */
letter-spacing: .2em;
margin-bottom: 0;
text-transform: uppercase;
}

section.team a {
font-size: 12px;
}

1 个答案:

答案 0 :(得分:0)

你有没有试过max-height?试试max-height:100%,看看是否也有效,请创建一个jsfiddle,以便我们更快地帮助您