将动态创建的图像对齐div的右侧

时间:2013-04-29 19:08:57

标签: css css3 alignment

我正在尝试创建一个购物清单。该列表是使用Javascript(JquerryUI)动态创建的。我希望旁边的捶打罐位于右侧(我绘制的蓝色圆点在哪里)。我尝试在标记中使用leftstyle="right:350px"float:right进行此操作,但它无效。

enter image description here

这是我生成行的代码:

var row=$('<div class"productsclass" id='+selectedproducts[i]+' style="width:400px">
<label style="font-size:20px">'+selectedproducts[i]+'</label><input type="text" 
name="Quantity" value="1" id='+thesi+'><img class=delete 
src="http://b.dryicons.com/images/icon_sets/handy_part_2_icons/png/128x128/recycle_bin.png"
 height="22" width="22" style="right:350px"></div>'); 
   rowID++;

   $("#productstable").append(row);

这是html:

<div id="maindiv" class="maindiv">
<input id="autocomplete_text_field">
<button id="add_product_button">Add product</button>
<form action="#" id="productstable" name="productstable">
<p></p>
</form>
</div>
</body>

这是CSS:

#body{
    background-color: #6E0D25
}

#maindiv {
    position:absolute;
    top: 50%;
    left: 50%;
    width:30em;
    height:18em;
    margin-top: -9em; /*set to a negative number 1/2 of your height*/
    margin-left: -15em; /*set to a negative number 1/2 of your width*/
    /*border: 1px solid #ccc;*/
    background-color: #6E0D25;
}

#productstable
{
    background-color:#F1EBE4;
    border-radius:10px;
    width:400px;
}

#product
{
    width:380px;
}
#autocomplete_text_field
{
    width:200px;
    height:40px;
    border-radius:10px;

}

#add_product_button
{
    width:200px;
    height:50px;
    border-radius:10px;
}

我该怎么办? (对不起,如果这是一个非常无用的问题,这几乎是我第一次使用CSS)

在用户2313440回答后解决:

enter image description here

2 个答案:

答案 0 :(得分:0)

img class=delete更改为img class="delete",然后在CSS中为其添加float:right;

答案 1 :(得分:0)

只是简单地重新排列你的img,并使用float:right;

尝试使用此代码:

var row=$('    <div class "productsclass" id='+selectedproducts[i]+' style="width:400px">
    <img class=deletesrc="http://b.dryicons.com/images/icon_sets/handy_part_2_icons/png/128x128/recycle_bin.png" height="22" width="22" style="float: right;">
<label style="font-size:20px">'+selectedproducts[i]+'</label>
<input type="text" name="Quantity" value="1" id='+thesi+'>
</div>'); 

rowID++;

 $("#productstable").append(row);