所以我需要一点帮助。 我想显示此div /表格内联的输出.. 我只是不知道该怎么做。 我不知道它是否可能,所以请帮助xD
<div class="formholder" >
<form method="post" action="shop.php?action=add&id=<?php echo $row["id"];
?>">
<div class=product_cont>
<img src="<?php echo $row["image"]; ?>" class="img-responsive">
<h5 class="text-info"><?php echo $row ["p_name"]; ?></h5>
<h5 class="text-danger">$ <?php echo $row["price"]; ?></h5>
<input type="text" name="quantity" class="form-control" value="1">
<input type="hidden" name="hidden_name" value="<?php echo $row["p_name"]; ?
>">
<input type="hidden" name="hidden_price" value="<?php echo $row["price"];
>">
<input type="submit" name="add" style="margin-top:5px;" class="btn btn-
default" value="Add to bag">
</div>
</form>
</div>
此代码输出我的产品就像一个长列表。所以它有点烦人和不方便。 任何帮助将非常感激。 *编辑 如果需要,我可以发布整个代码。 TIA
答案 0 :(得分:0)
<style>
.text-info,.text-danger {
display:inline-block;
}
</style>
希望有所帮助