在同一边框内标注和输入

时间:2013-04-14 18:10:38

标签: html css

我有2个标签和两个输入,如图所示:

enter image description here

如何做到这一点?我正在使用外部css文件。

Html代码:

<fieldset class="polje">
            <legend>Podatki</legend>
            <dl>
              <dt id="border1">
                <label id="ime_label" for="ime">Ime</label> 
              </dt>
              <dd id="border1">
                <input type="text" id="ime" tabindex="1">
              </dd>
              <dt id="border2">
                <label for="priimek">Priimek</label>
              </dt>
              <dd id="border2">
                <input type="text" id="priimek" tabindex="2">
              </dd>
            </dl>
          </fieldset>

1 个答案:

答案 0 :(得分:0)

我会做这样的演示http://jsfiddle.net/kevinPHPkevin/YJVek/

div {
    border:solid thin #000;
    margin:15px 0 0 0;
}
h2 {
    margin:-15px 0 0 10px;
    background:#fff;
    width:80px;
}
label {
    margin-left:10px;
    width:60px;
    float:left;
}
p.border {
    padding-top:10px;
    padding-bottom:10px;
    border-top:solid thin #ccc;
    border-bottom:solid thin #ccc;
}