我在我的网页底部添加一个固定按钮时遇到了一些问题。我一直在用像素测试不同的数字,但按钮没有显示在右侧页面的下面。
HTML
<a href="#head"><img src="upbutton.png" id="fixedbutton"></a>CSS
.fixedbutton {
position: fixed;
bottom: 560px;
right: 1000px;
}发布于 2013-10-05 02:25:01
您在CSS (类)中指定了.fixedbutton,并在元素本身上指定了id。
将CSS更改为以下内容,这将选择id which按钮
#fixedbutton {
position: fixed;
bottom: 0px;
right: 0px;
}这是JoshC提供的jsFiddle。
发布于 2021-08-04 17:57:32

.bottomFixButtionComponent{
position: sticky;
bottom: 0px;
padding-top: 10px;
background: yellowgreen;
width: 100%;
height: 50px;
display: flex;
justify-content: space-around;
align-items: center;
box-shadow: 0px -4px 3px rgb(27 27 24 / 75%);
} <h1> Bottom Fix component </h1>
<div class="bottomFixButtionComponent">
<button>Clear </button>
<div>|</div>
<button>Submit </button>
</div>
发布于 2021-08-04 17:59:50
.bottomFixButtionComponent{
position: fixed;
bottom: 0px;
padding-top: 10px;
background: yellowgreen;
width: 100%;
height: 50px;
display: flex;
justify-content: space-around;
align-items: center;
box-shadow: 0px -4px 3px rgb(27 27 24 / 75%);
}<h1> Bottom Fix component </h1>
<div class="bottomFixButtionComponent">
<button>Clear </button>
<div>|</div>
<button>Submit </button>
</div>
https://stackoverflow.com/questions/19188211
复制相似问题