salve, come da titolo come mai .. visto l'articolo in questo sito..:
https://www.mrw.it/css/articoli/simulare-frame-css_502.html
su ie e su firefox sono diversi le impostazioni dei frame??
vi allego il codice:
frame.css
index.html
come mai ??
a me mi serve come è nell'immagine dell'articolo perché fa questa cosa?
uso firefox 16.01 e ie 9.
grazie mille.
https://www.mrw.it/css/articoli/simulare-frame-css_502.html
su ie e su firefox sono diversi le impostazioni dei frame??
vi allego il codice:
frame.css
Codice:
body
{
background-color: #E0E0E0;
color: #000000;
margin: 0px;
overflow: Hidden;
}
div
{
font: Normal 12px Verdana;
}
h1
{
font: Bold 35px 'Times New Roman';
}
#TOP
{
background-color: #008080;
color: #FFFFFF;
height: 15%;
padding: 5px;
overflow: Hidden;
}
#LEFT
{
float: Left;
width: 20%;
padding: 5px;
overflow: Auto;
}
#RIGHT
{
background-color: #FFFFFF;
float: Left;
width: 80%;
height: 85%;
padding: 5px;
overflow: Auto;
}
index.html
PHP:
<html>
<head>
<title>Simulare i frame con i CSS</title>
<link rel="stylesheet" type="text/css" href="frame.css">
</head>
<body>
<div id="TOP">
<h1>FRAME TOP</h1>
</div>
<div id="LEFT">
<span>FRAME LEFT</span>
</div>
<div id="RIGHT">
<span>
FRAME RIGHT<br>FRAME RIGHT<br>FRAME RIGHT<br>
FRAME RIGHT<br>FRAME RIGHT<br>FRAME RIGHT<br>
FRAME RIGHT<br>FRAME RIGHT<br>FRAME RIGHT<br>
FRAME RIGHT<br>FRAME RIGHT<br>FRAME RIGHT<br>
FRAME RIGHT<br>FRAME RIGHT<br>FRAME RIGHT<br>
FRAME RIGHT<br>FRAME RIGHT<br>FRAME RIGHT<br>
FRAME RIGHT<br>FRAME RIGHT<br>FRAME RIGHT<br>
</span>
</div>
</body>
</html>
come mai ??
a me mi serve come è nell'immagine dell'articolo perché fa questa cosa?
uso firefox 16.01 e ie 9.
grazie mille.