如何排列一行的标签/从列表中删除列表的样式, 但是, 每一个下降列表上方都有标签 。
目前我的HTML里有:
<label for="select1">Label1</label>
<select id="select1">...<select>
<label for="select2">Label2</label>
<select id="select1">...<select>
<label for="select3">Label3</label>
<select id="select3">...<select>
By default, they all line up in one row. If I apply this style
label {
display:block;
}
我把他们都排成一列, 由于缺乏更好的词。
那么,我如何用风格来描述它们,让一排的标签/删除列表,但是,每个下降列表上方都有标签?当然没有表格。