Jump to content

HTML input text size


sseeley

Recommended Posts

Hello I have a text field

 

echo "<input type = \"text\" name = \"mobileTel\" id = \"mobileTel\" size = \"10\" maxlength = \"10\" value = \"$mobileTel\">";

 

I want to get the height of the input box smaller than the default.

 

Can anyone help me with the code?

 

Many thanks in advance.

 

Stuart

Link to comment
https://forums.phpfreaks.com/topic/191986-html-input-text-size/
Share on other sites

on a sidenote, you may want to use single quotes instead of escaping every double quote for easier to read code/less typing.

For example:

echo "<input type='text' name='mobileTel' id='mobileTel' size='10' maxlength='10' value='$mobileTel'>";

or reverse the quotes and use

echo '<input type="text" name="mobileTel" id="mobileTel" size="10" maxlength="10" value="$mobileTel">';

 

If you want all inputs on the page to be displayed like that you may want to use this inside the <head> section.

<style type="text/css">
  input[type=text]{ height: 15px; } /*do note that attribute selectors do not work in IE6 */
</style>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.