Jump to content
  • 0

выравнивание


web-mindfreak
 Share

Question

5 answers to this question

Recommended Posts

  • 0

Можно использовать таблицу:


<table>
<tr>
<td>Логин:</td><td><input></td>
</tr>
<tr>
<td>Пароль:</td><td><input></td>
</tr>
<tr>
<td>Повторите пароль:</td><td><input></td>
</tr>
</table>

Либо можно обернуть все это в дивы:


<div>
<div>Логин:</div><div><input></div>
</div>
<div>
<div>Пароль:</div><div><input></div>
</div>
<div>
<div>Повторите пароль:</div><div><input></div>
</div>

Но дивы с логин/пароль/повторите пароль - сделать одинаковой ширины.

Edited by DStereo
Link to comment
Share on other sites

  • 0

Для таких простых форм я например сделал бы как-то так:


<style type="text/css">
.fline {
margin:0 0 5px;
}
.fline__label {
width:120px;
display:inline-block;
*display:inline;
*zoom:1;
margin:0 5px 0 0;
}
.fline__itext {
width:200px;
display:inline-block;
*display:inline;
*zoom:1;
margin:0;
padding:3px 5px;
}
</style>


<div class="fline">
<label for="login" class="fline__label">Логин:</label><input type="text" name="login" id="login" class="fline__itext"/>
</div>
<div class="fline">
<label for="pass" class="fline__label">Пароль:</label><input type="password" name="pass" id="pass" class="fline__itext"/>
</div>
<div class="fline">
<label for="cpass" class="fline__label">Подтвердите пароль:</label><input type="password" name="cpass" id="cpass" class="fline__itext"/>
</div>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy