button{
position:fixed;
bottom:0;
width:100%;
background:#000;
color:#fff;
padding:10px;
margin:10px;
}
<button>Buy Now</button>
为什么我的按钮不居中?这似乎更合适。为什么固定位置与身体宽度无关?
答案 0 :(得分:2)
button{
position:fixed;
bottom:0;
left:0;
width:calc(100% - 20px);
background:#000;
color:#fff;
padding:10px;
margin:10px;
}
<button>Buy Now</button>
答案 1 :(得分:2)
从其他答案和评论我认为你想要这个。
button {
position: fixed;
bottom: 0;
left: 0;
width: calc(100% - 20px);
background: #000;
color: #fff;
padding: 10px;
margin: 10px;
}
&#13;
<button>Buy Now</button>
&#13;
答案 2 :(得分:2)
这让您困惑的是边缘的诡计。
因为您的按钮有margin: 10px;
,所以您的按钮现在的额外宽度为20px(左右10px)。您必须将100%宽度减少20px。因此,width: calc(100% - 20px);
button {
position: fixed;
bottom: 0;
left: 0;
width: calc(100% - 20px);
background: #000;
color: #fff;
padding: 10px;
margin: 10px;
}
&#13;
<button>Buy Now</button>
&#13;
或者你可以删除保证金。
答案 3 :(得分:1)
边距正在弄乱你的页面。你需要做的是:
button{
position:fixed;
bottom:0;
width:90%;
left: 0; /* <- Set the left property always. */
right: 0;
margin: 0 auto; /* left: 0, right: 0, margin: 0 auto sets the appropriate margins. */
background:#000;
color:#fff;
padding:10px;
/* margin: 10px; <- NO MARGIN! */
}
&#13;
<button>Buy Now</button>
&#13;
答案 4 :(得分:1)
HI现在删除您的width
或margin
以及定义到left
right
top
bottom
根据您的设计。
现在将按钮更改为span
或div
,如下所示
span.btn{
position:fixed;
bottom:10px;
background:#000;
color:#fff;
padding:10px;
right:10px;
left:10px;
}
&#13;
<span class="btn">Buy Now</span>
&#13;
答案 5 :(得分:1)
button{
position:fixed;
bottom:0;
left: 50%; /* <- Set the left property always. */
right: 50%;
width:100px;
margin: 0 auto;
background:#000;
color:#fff;
padding:10px;
}
<button>Buy Now</button>
答案 6 :(得分:1)
添加包裹div
。
.btn{
position:fixed;
bottom:0;
left: 0;
right: 0;
margin:10px;
}
button{
width:100%;
background:#000;
color:#fff;
padding:10px;
}
&#13;
<div class="btn">
<button>Buy Now</button>
</div>
&#13;
答案 7 :(得分:1)
我希望你想知道为什么你的div总是溢出到正确,即使使用了右边距。所以兄弟,你必须知道每个块级别元素的默认属性是向左浮动并使用浏览器左边缘作为初始比例。因此元素倾向于溢出右边从左边缘而不是右边缘
你必须使用以下代码:
buttom{
position:fixed;
bottom:0;
left:0;
width:calc(100% - (X*2)px);// X is the margin you give. X * 2, its because margin-left + margin-right.
background:#000;
color:#fff;
padding:10px;
margin:Xpx;
}
答案 8 :(得分:1)
试试这样:
button {
position: fixed;
bottom: 0;
left: 0;
width: calc(100% - 20px);
background: #000;
color: #fff;
padding: 10px;
margin: 10px;
}
HTML:
<button>Buy Now</button>