_x000D_
* {_x000D_
box-sizing: border-box;_x000D_
}_x000D_
_x000D_
.container {_x000D_
border-radius: 5px;_x000D_
background-color: #f2f2f2;_x000D_
padding: 20px;_x000D_
}_x000D_
_x000D_
/* Clear floats after the columns */_x000D_
.row:after {_x000D_
content: "";_x000D_
display: table;_x000D_
clear: both;_x000D_
}_x000D_
_x000D_
input[type=text], select, textarea{_x000D_
width: 100%;_x000D_
padding: 12px;_x000D_
border: 1px solid #ccc;_x000D_
border-radius: 4px;_x000D_
box-sizing: border-box;_x000D_
resize: vertical;_x000D_
}
_x000D_
<div class="container">_x000D_
<div class="row">_x000D_
<label for="name">Name</label>_x000D_
<input type="text" id="name" name="name" placeholder="Your name..">_x000D_
</div>_x000D_
<div class="row">_x000D_
<label for="country">Country</label>_x000D_
<select id="country" name="country">_x000D_
<option value="australia">UK</option>_x000D_
<option value="canada">USA</option>_x000D_
<option value="usa">RU</option>_x000D_
</select>_x000D_
</div> _x000D_
<div class="row">_x000D_
<label for="subject">Subject</label>_x000D_
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>_x000D_
</div>_x000D_
</div>
_x000D_