代码之家  ›  专栏  ›  技术社区  ›  ayaz

HTML输入单选元素文本的CSS对齐

  •  3
  • ayaz  · 技术社区  · 16 年前

    input[type="radio"] <input/>

    div.leftBlock {
      position: relative;
      float: left;
      width: 275px;
    }
    <div class="leftBlock">
      <input type="radio" name="foo" value="bar" id="option" /> This is a rather long supporting text that does not fit in one line.
    </div>

    我怎样才能设计出这种风格 <输入/> <输入/> 要素

    任何帮助都将不胜感激。

    3 回复  |  直到 6 年前
        1
  •  8
  •   Linus Caldwell Emperor 2052    11 年前

    容器可以使用正左 padding ,和一个负数 text-indent .

    .leftBlock {
        padding-left: 20px;
        text-indent: -20px;
    }
    .leftBlock input {
        width: 20px;
    }
    

    Here's an example

        2
  •  1
  •   Ates Goral    16 年前

    这里有一个选择:

    <style>
    div.leftBlock {
        position:relative; 
        float:left; 
        width:275px;
    } 
    
    .radio {
        float: left;
    }
    
    .radio_label {
        display: block;
        margin-left: 1.5em;
    }
    </style>
    <div class="leftBlock">
        <input type="radio" name="foo" value="bar" id="option" class="radio"/>
        <span class="radio_label">
        This is a rather long supporting text that does not fit in
        one line.
        </span>
    </div>
    

    将标签转换为具有左边框的浮动块元素。

        3
  •  0
  •   Linus Caldwell Emperor 2052    11 年前

    可以通过更改属性来更改输入的垂直级别 top class id 对于该输入,这里的代码是:

    <style type="text/css">
        .main {
            height:50px;
            line-height:50px;
            font-size:25px;
            position:relative;
        }
    
        .rd {
            position:inherit;
            top:-2px;
        }
    </style>
    
    <div id="main">
        <input type="radio" id="rd" />
        This is a rather long supporting text that does not fit in one line.
    </div>