PHP interesse |
|
Ik heb een div in mijn site staan die moet scrollen alstie over de groote heen is , maar nu heb ik een probleem : als ik de site met opera ga bekijken zie ik geen inhoud in de div, in IE wel , FF weet ik niet die heb ik niet draaiend
dit is de CSS code :
.content-goscroll
{
width : 100%;
height : 100%;
overflow : auto;
font-family : Verdana, Lucida, Arial;
color : #000000;
font-size : 12px;
text-decoration : none;
}
.content-goscroll { width : 100%; height : 100%; overflow : auto; font-family : Verdana, Lucida, Arial; color : #000000; font-size : 12px; text-decoration : none; }
en dit de div :
<div class="content-goscroll">TEST TEXT</div>
<div class="content-goscroll">TEST TEXT</div>
weet iemand wat mjin fout is ?
EDIT : ik weet nu dat Opera de 100% height niet pakt , 100% width wel ... hmmz weet iemand ander toevallig hoe de height automatisch me vergroot met de pagina groote (mag met php) ?
EDIT 2 : ik heb nu een work arround gemaakt :
function browser($what)
{
$browser = $_SERVER["HTTP_USER_AGENT"];
if ($what == "get-css-goscroll")
{
if (substr_count($browser, "MSIE")) return "content-goscroll-ie";
else return "content-goscroll-nonie";
}
}
function browser($what) { $browser = $_SERVER["HTTP_USER_AGENT"]; if ($what == "get-css-goscroll") { if (substr_count($browser, "MSIE")) return "content-goscroll-ie"; else return "content-goscroll-nonie"; } }
.content-goscroll-nonie
{
width: 100%;
height: 710px;
overflow: auto;
font-family: Verdana, Lucida, Arial;
color: #000000;
font-size: 12px;
text-align: left;
text-decoration: none;
scrollbar-face-color: #FFFFFF;
scrollbar-shadow-color: #FFFFFF;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: #1111A4;
scrollbar-darkshadow-color: #1111A4;
scrollbar-track-color: #D8D8F0;
scrollbar-arrow-color: #1111A4;
}
.content-goscroll-ie
{
width: 100%;
height: 96%;
padding: 0px;
margin: 0px;
overflow: auto;
font-family: Verdana, Lucida, Arial;
color: #000000;
font-size: 12px;
text-align: left;
text-decoration: none;
scrollbar-face-color: #FFFFFF;
scrollbar-shadow-color: #FFFFFF;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: #1111A4;
scrollbar-darkshadow-color: #1111A4;
scrollbar-track-color: #D8D8F0;
scrollbar-arrow-color: #1111A4;
}
.content-goscroll-nonie { width: 100%; height: 710px; overflow: auto; font-family: Verdana, Lucida, Arial; color: #000000; font-size: 12px; text-align: left; text-decoration: none; scrollbar-face-color: #FFFFFF; scrollbar-shadow-color: #FFFFFF; scrollbar-highlight-color: #FFFFFF; scrollbar-3dlight-color: #1111A4; scrollbar-darkshadow-color: #1111A4; scrollbar-track-color: #D8D8F0; scrollbar-arrow-color: #1111A4; } .content-goscroll-ie { width: 100%; height: 96%; padding: 0px; margin: 0px; overflow: auto; font-family: Verdana, Lucida, Arial; color: #000000; font-size: 12px; text-align: left; text-decoration: none; scrollbar-face-color: #FFFFFF; scrollbar-shadow-color: #FFFFFF; scrollbar-highlight-color: #FFFFFF; scrollbar-3dlight-color: #1111A4; scrollbar-darkshadow-color: #1111A4; scrollbar-track-color: #D8D8F0; scrollbar-arrow-color: #1111A4; }
mag eigenlijk niet maarjah....
|