HighDots Forums  

Center text on button

Cascading Style Sheets Layout/presentation on the WWW (comp.infosystems.www.authoring.stylesheets)


Discuss Center text on button in the Cascading Style Sheets forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Chris Seidel
 
Posts: n/a

Default Center text on button - 06-26-2009 , 01:37 PM






Hi,

what css property must be set to center the text verticaly und horizontally
on a button (input type="button")?

I have tried text-align:"center", but this does not work.

Thank you.

Reply With Quote
  #2  
Old   
Ben C
 
Posts: n/a

Default Re: Center text on button - 06-26-2009 , 06:23 PM






On 2009-06-26, Chris Seidel <cseidel (AT) arcor (DOT) de> wrote:
Quote:
Hi,

what css property must be set to center the text verticaly und horizontally
on a button (input type="button")?
Any support you get for CSS style on an <input> should be treated as
"experimental" according to CSS specs, so unless you want to be
experimented on don't rely on it.

Quote:
I have tried text-align:"center", but this does not work.
Use <button> instead, because it's not a replaced element, but (where
supported and where Appendix D is followed) just a regular inline-block.

So you can centre vertically by setting a line-height equal to the
height you've set (caveat: don't allow text to wrap in the button) and
horizontally with text-align: center (although you often get that by
default anyway).

e.g.

button
{
width: 300px;
height: 200px; line-height: 200px;
text-align: center;
}

There probably is a way you can make it work with <input> but not
without some frobnication.

Reply With Quote
  #3  
Old   
Chris Seidel
 
Posts: n/a

Default Re: Center text on button - 06-27-2009 , 07:58 AM



Ben C wrote:

Quote:
Any support you get for CSS style on an <input> should be treated as
"experimental" according to CSS specs, so unless you want to be
experimented on don't rely on it.
Ah ok, thank you!

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.