如何让标签保持在select元素的顶部?

时间:2015-08-16 21:47:44

标签: html css label html-select

使用这个html:

childStderr

我的标签会掉到选择元素的底部:

enter image description here

我希望它在顶部,而不是。我需要什么样的html或CSS?

1 个答案:

答案 0 :(得分:3)

只需使用vertical-align:top

label{
  vertical-align:top;
  }
<label for="selwhere">Select the locations for the job type selected above</label>
<select name="selwhere" id="selwhere" multiple="multiple">
  <option value="linecook">Line cook</option>
  <option value="barrista">Barrista</option>
  <option value="securityguard">Security Guard</option>
  <option value="fignipper">Nipper of Figs</option>
</select>