0

主要なブラウザで複数行で動作するドロップダウンを作成するより良い方法は何ですか?

ありがとう!

このように同じ:

-------------
- Example 1 -
-   and     -  This is one item
- Example 2 -
-------------
-------------
- Example 3 -
-   and     -  This is another item
- Example 4 -
-------------
-------------
- Example 5 -
-   and     -  and this is another item
- Example 6 -
-------------

同じように助けて!

4

2 に答える 2

0

<br />1つの解決策です。別のアプローチは、各コントロールをdivクラスでラップし、それにcssを適用することです。divとcssでそれを行うと、長期的にははるかに優れた制御が可能になります。

//css
.coolClass
{
float:left;
}
//EndCss

<div class='coolClass'>
<asp:label>name</asp:label>
<asp:textobox runat='server' id='test1'/>
</div>
于 2013-01-29T19:52:37.890 に答える
0

探しているだけですか?

<br />

各テキストボックスの後に置くHTMLは?

于 2013-01-29T19:01:07.760 に答える