[php] div / inputbox

Pagina: 1
Acties:

  • Zym0tiC
  • Registratie: Februari 2001
  • Laatst online: 20:22
Ik heb een raar probleem waar ik zo snel geen raad mee weet, het probleem doet zich alleen voor bij Mozilla Firefox.
Ik heb een form met een inputbox voor een username en een inputbox voor een wachtwoord in te voeren. Deze bevinden zich in een div.
Deze div is vervolgens weer genest in een andere div.
Wanneer je bij username een waarde wilt invullen dan krijg je zo;n popup met van te voren ingevulde namen maar deze popup bevind zich in de buitenste div ipv onder de inputbox

Dit is de div die om de 2 inputboxen zit:

code:
1
2
3
4
5
6
7
8
9
10
11
12
div.cfill {
  position: relative;
    top: 0px;
    left: 0px;
    width: 476px;
    background-image: url(../images/cfill.gif);
    font-family: Arial, Verdana;
    font-size: 12;
    padding: 5px;
    box-sizing: border-box;
  -moz-box-sizing: border-box;
}

There is no such thing as innocence, only degrees of guilt | Flickr!


  • whoami
  • Registratie: December 2000
  • Laatst online: 00:40
't Is dus een clientside probleem, en deze horen niet thuis in P&W, maar in W&G

-> W&G

https://fgheysels.github.io/


  • Bosmonster
  • Registratie: Juni 2001
  • Laatst online: 10-05 18:53

Bosmonster

*zucht*

Maar wat is je probleem nou precies :? Want hier kunnen we dus helemaal niks mee.

  • crisp
  • Registratie: Februari 2000
  • Laatst online: 01:01

crisp

Devver

Pixelated

Ik neem aan dat het om dat IE-autocomplete dingetje gaat? Dat is dus browser-gerelateerd en heeft met de HTML niets te maken, als IE dat niet goed doet in sommige gevallen is dat dus gewoon een IE-bug.

Intentionally left blank


  • Zym0tiC
  • Registratie: Februari 2001
  • Laatst online: 20:22
crisp schreef op 15 maart 2004 @ 22:24:
Ik neem aan dat het om dat IE-autocomplete dingetje gaat? Dat is dus browser-gerelateerd en heeft met de HTML niets te maken, als IE dat niet goed doet in sommige gevallen is dat dus gewoon een IE-bug.
IE doet het net wel goed alleen Firefox dus niet, is trouwens geen beta versie.

Ik zal even een screen maken

Afbeeldingslocatie: http://members.home.nl/graasgast/misc/mozfout.gif

nog even verduidelijken:

code:
1
2
3
4
5
6
7
<div class="header"> </div>
<div class="menu"><div class="content">
<p><div class="ctop"></div>
  <div class="cfill"></div>
  <div class="cbottem">{INPUTBOX}</div></p>
  <div class="fill"></div>
</div>


boven of onder menu komt dus die autocomplete popup.

css:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
  background-image: url(../images/bgfill.gif);
}

div.header {
  position: absolute;
    top: 12px;
    left: 10px;
    width: 600px;
    height: 79px;
    background-image: url(../images/header.gif);
    z-index: 1;
} 

div.menu {
  position: absolute;
    top: 100px;
    left: 25px;
    font-family: Arial, Verdana;
    font-weight: bold;
    font-size: 13;
    z-index: 2;
}

ul {
  list-style-type: none;
}

td {    
  font-family: Arial, Verdana;
    font-size: 12;
}
  

div.content {
  position: absolute;
    top: 100px;
    left: 200px;
    width: 470px;
}

div.ctop {
  position: relative;
    top: 0px;
    left: 0px;
    width: 476px;
    height: 41px;
    background-image: url(../images/ctop.gif);
    font-family: Arial, Verdana;
    font-size: 12;
    font-weight: bold;
    padding: 5px;
    box-sizing: border-box;
  -moz-box-sizing: border-box;
}

div.cfill {
  position: relative;
    top: 0px;
    left: 0px;
    width: 476px;
    background-image: url(../images/cfill.gif);
    font-family: Arial, Verdana;
    font-size: 12;
    padding: 5px;
    box-sizing: border-box;
  -moz-box-sizing: border-box;
}   
    
div.cbottem {
  position: relative;
    top: 0px;
    left: 0px;
    width: 476px;
    height: 31px;
    background-image: url(../images/cbottem.gif);
    font-family: Arial, Verdana;
    font-size: 10;
  text-align: right;
    box-sizing: border-box;
  -moz-box-sizing: border-box;
    padding-top: 15px;
    padding-right: 5px;
}

[ Voor 75% gewijzigd door Zym0tiC op 15-03-2004 22:36 ]

There is no such thing as innocence, only degrees of guilt | Flickr!


  • Bosmonster
  • Registratie: Juni 2001
  • Laatst online: 10-05 18:53

Bosmonster

*zucht*

Zym0tiC schreef op 15 maart 2004 @ 22:25:
[...]


IE doet het net wel goed alleen Firefox dus niet, is trouwens geen beta versie.

Ik zal even een screen maken

[afbeelding]
Ow autocomplete :) Firefox is trouwens wel een beta (is niet voor niks 0.8 ;)).

Gaat het hier om standaard autocomplete, of iets wat je zelf ontwikkeld hebt?

  • Zym0tiC
  • Registratie: Februari 2001
  • Laatst online: 20:22
Bosmonster schreef op 15 maart 2004 @ 22:36:
[...]


Ow autocomplete :) Firefox is trouwens wel een beta (is niet voor niks 0.8 ;)).

Gaat het hier om standaard autocomplete, of iets wat je zelf ontwikkeld hebt?
You got me, iig geen nightly dan :)

de standaard autocomplete

There is no such thing as innocence, only degrees of guilt | Flickr!


  • X-Lars
  • Registratie: Januari 2004
  • Niet online

X-Lars

Just GoT it.

Heb ik ook met Firefox, is gewoon een bug lijkt me. Volgens mij gebeurde het niet zoveel in Firebird.

  • Zym0tiC
  • Registratie: Februari 2001
  • Laatst online: 20:22
X-Lars schreef op 15 maart 2004 @ 22:45:
Heb ik ook met Firefox, is gewoon een bug lijkt me. Volgens mij gebeurde het niet zoveel in Firebird.
Wel vreemd dat ik bij andere sites geen last ervan heb. Is er een manier om autocompleet te onderdrukken :?

anders ga ik eens kijken wat het effect is als ik die divs in content vervang door tables

There is no such thing as innocence, only degrees of guilt | Flickr!


  • X-Lars
  • Registratie: Januari 2004
  • Niet online

X-Lars

Just GoT it.

* X-Lars raadt Zym0tiC af tables te gebruiken en zich op GoT te vertonen met al dat anti-tables geweld ;)

  • Zym0tiC
  • Registratie: Februari 2001
  • Laatst online: 20:22
X-Lars schreef op 15 maart 2004 @ 22:53:
* X-Lars raadt Zym0tiC af tables te gebruiken en zich op GoT te vertonen met al dat anti-tables geweld ;)
Ik heb net even met tables getest en daarbij ging alles goed.

Maar hoezo zou ik geen tables gebruiken als ik daarmee wel het behaalde resultaat krijg? De hoofd elementen staan in layers. Alleen in de layer content wordt er gebruik gemaakt van tabellen.

There is no such thing as innocence, only degrees of guilt | Flickr!


  • X-Lars
  • Registratie: Januari 2004
  • Niet online

X-Lars

Just GoT it.

Just kiddin'.. laten we die discussie hier nou niet gaan houden :)

  • Zym0tiC
  • Registratie: Februari 2001
  • Laatst online: 20:22
X-Lars schreef op 15 maart 2004 @ 23:03:
Just kiddin'.. laten we die discussie hier nou niet gaan houden :)
hoeft ook niet, ik begrijp wel wat je bedoelt. Liefst had ik hem ook volledig in css, ik ga iig nog op zoek naar een oplossing ervoor

There is no such thing as innocence, only degrees of guilt | Flickr!


  • crisp
  • Registratie: Februari 2000
  • Laatst online: 01:01

crisp

Devver

Pixelated

Je code om gaan gooien voor zoiets onbenulligs dat ook nog eens een bug enkel in FireFox is vind ik persoonlijk wel ver gaan eigenlijk. Zelf heb ik autocomplete trouwens uitstaan; ik vind het een verschrikkelijke feature...

Intentionally left blank


  • Zym0tiC
  • Registratie: Februari 2001
  • Laatst online: 20:22
Net even de laatste nightly van Firefox geinstalleerd. Hierbij heb ik geen problemen. :)
Nu rest mij alleen nog de vraag waarom ik wel die problemen bij mijn site had maar niet bij andere sites met inputboxen in div's

There is no such thing as innocence, only degrees of guilt | Flickr!

Pagina: 1