这一点有些难于说明...... 从根本上讲,我想的是这一局面,但内容不断变化。
so I set up my html like this, basically all the elements are piled into the wrapper, the pictures and titles will be dynamically rotating and will be different widths and heights:
<div id="wrapper">
<div id="title"><h2></div>
<div id="image"><img></div>
<div id="leftbutton" class="but"><img></div>
<div id="rightbutton" class="but"><img></div>
</div>
我曾尝试过Hasn t。 我应如何做到这一点?
我最接近的是这一点,但标题领域可能改变高点,使这种方法无法奏效,因为我不得不将图像及其相对位置的变化与标题要素的扩大和缩小:
#wrapper{
position:relative;
text-align: center;
}
.but{
z-index:20;
position:absolute;
}
#leftbutton{
left:0px;
}
#rightbutton{
right:0px;
}
#title{
z-index: 3;
display: inline-block;
width:auto;
min-width: 80px;
max-width: 340px;
}
#image{
z-index: 1;
position: relative;
top:-21px;
}