Jump to content
  • 0

Форматирование выпадающего списка


DrMartens
 Share

Question

Вот нужно в div заданой высоти и ширини вставить выпадающйй список, я его вставить вставил, но как его расположить по центру по вертикали и по горизонтали и ширину поставити на 90% блока и высоту такую же. Вот код того что есть:

стиль:

#pole {width:100%; float:left;}

#pole .nw {background-color:#e3ebf5; height:50px;}

#pole .wht {background-color:#FFF; height:50px;}

#pole .pole_name {text-align: left; color:#666666; font-family:Arial, Helvetica, sans-serif; font-size:18px; margin-left:25px; width:33%; line-height:50px; float:left;}

#pole .pole_lists {text-align: center; line-height:50px; float:left;}

#pole .list_style { width: 100%;; height:95%; background-color:#cccccc; font-family:Arial, Helvetica, sans-serif; font-size:22px; float: right; vertical-align:middle;}

код хтмл:

<div id="pole">

<div class=" nw"><div class="pole_name">Тут название поля*</div> <div class="pole_lists"><select class="list_style">

<option value="all">132</option>

<option value="1">123</option>

<option value="2">13</option>

</select></div>

</div>

</div>

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

я может вопрос недопонял малость, но я сделал так как понял, только пришлось перекроить на таблицы вот код:

html:

<table class=" nw" width="100%" height="50" cellpadding="0" cellspacing="0">
<tr>
<td class="pole_name">Тут название поля*</td>
<td class="pole_lists" valign="middle">
<select class="list_style">
<option value="all">132</option>
<option value="1">123</option>
<option value="2">13</option>
</select>
</td>
</tr>
</table>

css:

#pole {
width:100%;
float:left;
}
#pole .nw {
background-color:#e3ebf5;

}
#pole .wht {
background-color:#FFF;
height:50px;
}
#pole .pole_name {
text-align: left;
color:#666666;
font-family:Arial, Helvetica, sans-serif;
font-size:18px;
padding-left:25px;
width:33%;
line-height:50px;
}
#pole .pole_lists {
line-height:50px;
width:63%;
text-align:center;
}
#pole .list_style {
width: 90%;
height:90%;
background-color:#cccccc;
font-family:Arial, Helvetica, sans-serif;
font-size:22px;
}

если я неправильно что-либо сделал напиши, может помогу!!

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