Hallo,
ich möchte auf einem Display im Betrieb zwei Seiten einbinden, damit diese auf einer Seite angezeigt werden. Das ganze kann ich ja in der Index.html wie folgt lösen:
Code
<style>
*{
margin:0;
padding:0;
}
#fra{
border:3px solid black;
height:380px;
top:50px;
position:absolute;
left:50px;
width:600px;
}
.frame{
z-index:0;
height:300px;
width:500px;
font-size:100px;
height:250px;
width:350px;
display:inline-block;
}
.frame1{
top:20px;
left:20px;
position:absolute;
border:2px solid red;
background:#ffaaaa;
}
.frame2{
z-index:1;
position:absolute;
top:70px;
left:70px;
border:2px solid blue;
background:#aaaaff;
}
</style>
<div id="fra">
<div class="frame frame1">Erste Seite</div>
<div class="frame frame2">Zweite Seite</div>
</div>