Small Text Boxes?

Small Text Boxes?

am 29.05.2007 18:19:16 von Akhenaten

I'm working with limited space in a particular table cell, what's the
best way to create an input text box that is a bit smaller than the
standard ?

TIA.
../JLK

Re: Small Text Boxes?

am 29.05.2007 18:30:38 von scripts.contact

On May 29, 10:19 am, Akhenaten wrote:
> I'm working with limited space in a particular table cell, what's the
> best way to create an input text box that is a bit smaller than the
> standard ?


e.g.-


OR


e.g.-

Re: Small Text Boxes?

am 29.05.2007 18:41:28 von lws4art

Akhenaten wrote:
> I'm working with limited space in a particular table cell, what's the
> best way to create an input text box that is a bit smaller than the
> standard ?

..itzybitzy { font-size: .5em; }






--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com

Re: Small Text Boxes?

am 29.05.2007 19:30:06 von Akhenaten

> .itzybitzy { font-size: .5em; }
>
>
>
> --
> Take care,
>
> Jonathan
> -------------------
> LITTLE WORKS STUDIOhttp://www.LittleWorksStudio.com


Thx, the CSS bit was what I needed.

Re: Small Text Boxes?

am 29.05.2007 21:12:05 von jkorpela

Scripsit Akhenaten:

> I'm working with limited space in a particular table cell,

Then fix the thing that created this problem...

> what's the
> best way to create an input text box that is a bit smaller than the
> standard ?

.... instead of creating new problems.

The default font size in input boxes is already typically 90% of the basic
font size*), so making it even smaller is a bad move. If you want user
input, why would you make it hard to him to see what he is writing?

*) So the CSS code
input { font-size: 100%; }
is worth considering.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/