badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

bkkumaris4u

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Make Sidebar Fixed #63915
    bkkumaris4u
    Blocked

    Recently, I was pleased to discover that all major desktop browsers (Chrome, Firefox, Edge and Safari) are now compatible with the CSS property: sticky. (Apart from an error in Chrome with some elements of the table). Edge was the last browser to send support in October 2017 in version 16, which can be found at caniuse.com. This means that we can build a sticky sidebar using only two lines of CSS, without JavaScript. Let me show you how.

    First set up two divs. One represents the content of the main page and should extend beyond the bottom of the screen. The second will be the sidebar, which we will shorten compared to the length of the screen, so that we can see it clearly move in our example. We use flex to place them next to each other, because it is in 2018 and also because I love flex.

    Use the following HTML and CSS code:

    <div class = “wrapper”>
    <div class = “main”>
    Main content
    </ div>
    <div class = “sidebar”>
    Sticky side bar
    </ div>
    </ div>
    wrapping {
    screen: bending;
    justify content: intermediate space;
    }

    .principal,
    . sidebar {
    edge: black 3px;
    Filling: 15px;
    background color: #fff;
    }

    .principal {
    width: 60%;
    height: 150vh;
    }

    . sidebar {
    width: 25%;
    height: 25vh;
    }

    body {
    background color: #ccc;
    Font family: sans-serif;
    Upholstery: 10px;
    }

Viewing 1 post (of 1 total)