Jump to content

Quick question!


Ghettobusta

Recommended Posts

Let's say I display a certain sentence in a drop-down menu:

print '<option value="'.$enregistrement['Unom'].'">'.$enregistrement['Unom'].'</option>';

 

If I want to create an input that will be the same size as my drop-down... how can I do this?

<input type="password" maxlength="12" name="password" size="30"/>

What do I put in size instead of "30"?

 

If you don't understand my question... this might help you visualize it:

http://cogito.labos.polymtl.ca/~ti317/TS2/intervention.php

 

I want the "Mot de passe" and "Commentaire" inputs to be as long as "Sujet"

 

thanks in advance

Link to comment
Share on other sites

You can't give an input form a width of 100%. That won't do anything. There is no width attribute of an input form.

 

Yes you can:

<input type='text' style='width: 100%;' />

Note that ToonMariner said style. That means to use either a stylesheet or the style attribute.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.