Results 1 to 4 of 4

Thread: vertical align the text within a text box

  1. #1
    Join Date
    Dec 2007
    Posts
    88
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Question vertical align the text within a text box

    Hi, I need help please!

    I want to vertical align the text within a text box.

    I can set the vertical align of the text box but not the text.

    My text box has a style property of: style ="height : 20px; border : 1px solid #CCCCCC;"

    but my text is to high on top in the text box


    I tried the following:
    text-align : center; - but that moves the text to the center horizontally
    vertical-align : sub;

    Please Asist!


    Regards

  2. #2
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    So you want to add a buffer between the text and the border?

    Try
    Code:
    padding: 10px 10px 10px 10px
    Like the name implies, it'll add padding around the border of the div. The syntax is as such: top padding, right padding, bottom padding, left padding.


    HTH

  3. #3
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    vertical-align: only helps if you have something to align it too.. like a picture or a button.

    If it is small text you can just adjust the line height, or you can use percentages or margins.

    For more info and examples see this page
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  4. #4
    Join Date
    Dec 2007
    Posts
    88
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Smile Thank You very much!

    Hi, Thank You very much for the speedy response & help

    padding-top : 2px;

    Thank You

    Regards

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •