0
我有3個div標籤,我想在一行中並排顯示。Div Item Size ItemTemplate Repeater ASP.NET
它們分別位於主DIV中:
<div class="dvItemContainer">
<div class="nameContainer">content-1</div>
<div class="quantityDiv">Content-2</div>
<div class="dvLnkContainer">Content-3</div>
</div>
The classes are:
.dvItemContainer
{
width:250px;
float:right;
cursor:pointer;
overflow: hidden;
max-width:250px;
}
.nameContainer
{
width:150px;
float:left;
max-width:150px;
overflow:hidden;
}
.quantityDiv
{
width:60px;
float:right;
}
.dvLnkContainer
{
width:40px;
float:right;
right:0;
visibility:visible;
}
此代碼,我作爲ItemTemplate中unside ASP使用用戶控制內部限定:Repeter控制。
<ItemTemplate>
<div style="width:100%; display:inline;" runat="server">
<prod:ProductItemTagName ID="productItem" width="100%" runat="server" />
</div>
</ItemTemplate
不知何故,這些div爲彼此取一整行。
例如它表明它這樣:
謝謝!