codice:
<div class="container">
<div class="highlights" id="hl_div">
<div>
<div class="hl_left_arrow" onClick="showPrevHighlight();"></div>
<div class="image" id="hl_image">
</div>
</div>
</div>
</div>
codice:
body{
background:#ccc;
}
.container{
width:400px;
border:2px solid #000;
float:right;
}
.highlights {
background: url(highlights.png) no-repeat bottom;
width: 350px;
height:262px;
background-color:black;
overflow: hidden;
padding:5px;
margin-bottom:10px;
}
.highlights .image {
width: 350px;
height: 262px;
margin:0 auto;
}
.highlights .hl_left_arrow {
width: 100px;
height: 100px;
cursor: pointer;
position:relative;
top:210px;
left:300px;
z-index: 1;
background: url(hl_left_arrow.png) no-repeat top left;
}