Answers for "element position fixed bottom"

CSS
0

how to middle fixed element

position: fixed;
	top: 0;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
Posted by: Guest on June-12-2020
0

add fixed button bottom

#fixed_button{
    position: fixed;
    z-index: 999;
    right: 0.75rem;
    bottom: 0.75rem;
    display: none;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 1.875rem;
    background: #4f3cda url("../images/up-arrow.png") no-repeat center 47%;
        background-size: auto;
    background-size: 1.125rem 1.125rem;
    text-indent: -9999px;
}
Posted by: Guest on November-11-2020

Browse Popular Code Answers by Language