PHP beginner |
|
Wat is je doctype?
Want daar heeft het (volgens mij) ook mee te maken.
Volgens mij werkt hij zeker met HTML 4.01 strict ;)
en dan:
html, body {
height:100%;
height:100%;
}
body {
margin: 0px;
padding: 0px;
font-family: Georgia, Times, Serif;
color: black;
background-color: #66FF33;
width: 100%;
}
html, body { height:100%; height:100%; } body { margin: 0px; padding: 0px; font-family: Georgia, Times, Serif; color: black; background-color: #66FF33; width: 100%; }
Not tested yet
EDIT:
Getest met XHTML 1.0 en bij die werkt hij ook,
Hier de code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Title</title>
<style>
html, body {
height:100%;
height:100%;
}
body {
margin: 0px;
padding: 0px;
font-family: Georgia, Times, Serif;
color: black;
background-color: #66FF33;
width: 100%;
}
</style>
</head>
<body>
Content
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> html, body { height:100%; height:100%; } body { margin: 0px; padding: 0px; font-family: Georgia, Times, Serif; color: black; background-color: #66FF33; width: 100%; } Content
Edit 2:
Ik zie dat je vaker een topic hebt geopend over height 100% en foto's centreren etc.
Hier een oplossing van je foto centreren:
http://plaatscode.be/137074/
Gaat over dit topic:
http://www.site...en_doctype
En een oplossing van dit topic met het menu erbij:
http://plaatscode.be/137075/
Ik hoop dat je verder komt |