0

我需要一点帮助。我在订单页面上创建了一个更大的按钮,底部被切断以关闭。我需要在底部添加一点空间。我添加了一个 1px 的边框,这样你就可以看到它是如何布局的。您可以在这里查看问题:https ://www.evernote.com/shard/s329/sh/a408b2ff-472c-481a-8fb1-b9e48c1205e1/5ddd92e9d940c78a57487e07d6eedcd4

<p><span id="old-price">$199 </span>
    <span id="new-price">$147</span>
    <strong><font color="#FF0000">
    35% off! &quot;Halloween Special&quot; </font></strong><em>Expires Nov 1st.</em>
<p class="cart-btns">
    <a href="https://www.e-junkie.com/ecom/gb.php?c=cart&i=CAP2S&cl=133613&ejc=2" target="ej_ejc" class="add-to-cart ec_ejc_thkbx" onclick="javascript:return EJEJC_lc(this);"></a>
</p>

    .products li p.cart-btns a.add-to-cart {
width: 120px;
height: 50px;
background: url(images/add-to-cart.gif) no-repeat;
}
4

1 回答 1

0

a是一个内联对象,不会接受height. 使用margin: 5pxpadding:5px放入p.cart-btns {}

你也可以让它以某种方式忽略边界(从文档的正常流程中取出)float:lefta.add-to-cart {}

于 2013-10-25T23:05:58.860 回答