Bonjour
Voici une page html :
Qui peut m'expliquer pourquoi dans la 2nd DIV, les boutons sont les un sous les autres et pas dans la 1ère.
J'ai fais cette page allégé pour comprendre pourquoi quand je change le display par javascript, la mise en forme est détruite.
Merci
Modifié par seb.49 (13 Jan 2010 - 21:42)
Voici une page html :
<html>
<head>
<body>
<div style="background-color: Red;text-align: center">
<input type="button" id="BTN_CALL_UPDATE_PUNAISE" value="Mettre à jour" onclick="UpdatePunaise2();" />
<input type="button" id="BTN_CALL_ADD_PUNAISE" value="Ajouter" onclick="CreatePunaise2();" />
<input type="button" id="BTN_CLOSE_SEARCH_PUNAISE" value="Fermer" onclick="MasqueWuc();" />
</div>
<br/><br/>
<div style="background-color: Red;width:500px;text-align: center;display:inline;display:inline-block">
<input type="button" id="BTN_CALL_UPDATE_PUNAISE" value="Mettre à jour" onclick="UpdatePunaise2();" style="display:block;"/>
<input type="button" id="BTN_CALL_ADD_PUNAISE" value="Ajouter" onclick="CreatePunaise2();" style="display:block;"/>
<input type="button" id="BTN_CLOSE_SEARCH_PUNAISE" value="Fermer" onclick="MasqueWuc();" style="display:block;"/>
</div>
</body>
</html>
Qui peut m'expliquer pourquoi dans la 2nd DIV, les boutons sont les un sous les autres et pas dans la 1ère.
J'ai fais cette page allégé pour comprendre pourquoi quand je change le display par javascript, la mise en forme est détruite.
Merci
Modifié par seb.49 (13 Jan 2010 - 21:42)