Image in Scroll [closed]

-3

I need to put an image in the scroll, instead of the default scroll.

Do you know if you can put an image in the scroll? either with css or jquery

Thank you!

    
asked by Mario 28.10.2017 в 02:29
source

1 answer

2

You should only use css to position the item as fixed :

.fixedElement {
    background-color: #c0c0c0;
    position:fixed;
    top:0;
    width:100%;
    z-index:100;
}
    
answered by 28.10.2017 в 02:38