У меня есть форма RTL. Но Input и label не являются обычными подряд.
HTML:
<div class="searchfield">
<label for="name">name :</label>
<input type="text" class="input" name="name" id="name" />
</div>
<div class="searchfield">
<label for="name">last name :</label>
<input type="text" class="input" name="name" id="name" />
</div>
<div class="searchfield">
<label for="name">tel :</label>
<input type="text" class="input" name="name" id="name" />
</div>
<div class="searchfield">
<label for="name">id :</label>
<input type="text" class="input" name="name" id="name" />
</div>
CSS:
.searchfield{margin:10px 20px 0 0;}
.label {
text-shadow: 2px 2px 2px #ccc;
display: block;
float: right;
margin-left:4px;
text-align: right;
line-height: 22px;
}
input.input {
outline:none;
border:1px solid rgba(0,0,0, 0.2);
width:135px; height:20px; background-color:#fafafa; font-size:11px;}
ДЕМО онлайн: http://jsfiddle.net/uEKkF/1/
Мне нужна эта картинка: ![enter image description here](https://i.stack.imgur.com/c3b1h.png)
Спасибо.