Results 1 to 3 of 3

Thread: [RESOLVED] Can't get text to line up the checkbox?

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    Jan 2004
    Location
    Southern California
    Posts
    5,034

    Resolved [RESOLVED] Can't get text to line up the checkbox?

    In the attached image, I'm trying to get the "Show Characters" to vertically line up with the checkbox and cannot figure out how to make this work. I'm using an HTML <input> tag and a HTML <label> tag rather than the ASP:Checkbox tag. Both of these elements are in a <td> of a <table> element. I've tried using CSS like "vertical-align: middle"...doesn't work. I've tried "padding: 3px"...doesn't work either. Not sure how to fix this.
    Attached Images Attached Images  
    Blake

  2. #2
    Superbly Moderated NeedSomeAnswers's Avatar
    Join Date
    Jun 2002
    Location
    Manchester uk
    Posts
    2,660

    Re: Can't get text to line up the checkbox?

    Tables are notoriously difficult to get things to align properly with, and are rarely used for layouts in modern web systems.

    If you use Div's for your layout you will find it easier, you can generally align stuff inside Divs

    here is an example

    HTML

    Code:
     
    <div>
        <label><input type="checkbox" /> Show Characters</label>
    </div>
    CSS

    Code:
    label {
      display: block;
      padding-left: 15px;
      text-indent: -15px;
    }
    input {
      width: 16px;
      height: 16px;
      padding: 0;
      margin:0;
      vertical-align: bottom;
      position: relative;
      top: -1px;
      *overflow: hidden;
    }
    or if your prepared to enter the world of the Flexbox then you have the best control over layout and positioning. Its a bit of a learning curve but once you start using them you will never look back.
    Please Mark your Thread "Resolved", if the query is solved & Rate those who have helped you



  3. #3

    Thread Starter
    PowerPoster
    Join Date
    Jan 2004
    Location
    Southern California
    Posts
    5,034

    Re: Can't get text to line up the checkbox?

    That worked NeedSomeAnswers...thanks!
    Blake

Posting Permissions

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



Click Here to Expand Forum to Full Width