答案 0 :(得分:0)
使用
position : fixed
并top and left
作为50%
,以获取center
中的元素,调整margin-left
和margin-top
{{1} }}和width
所考虑的元素。
height
.fixed {
position: fixed;
top: 50%;
left: 50%;
margin-left: -75px;/* Half of the width*/
margin-top: -15px;/* Half of the height*/
width: 150px;
height: 30px;
}

.fixed {
position: fixed;
top: 50%;
left: 50%;
margin-left: -75px;
margin-top: -15px;
width: 150px;
height: 30px;
background: green;
border-radius: 20px;
padding: 10px;
}