DTXqueque
DTXqueque

Reputation: 332

Is it possible to take scrollbar out the container to the document?

.cnt
  overflow: auto

https://codepen.io/DTX/pen/qjjyEe

I want it to look like scrollbar on the image: Img

P.s. Why is there 1px line at the end of content?

Upvotes: 0

Views: 66

Answers (2)

G-Cyrillus
G-Cyrillus

Reputation: 105863

You may use a mask and let body overflows: https://codepen.io/gc-nomade/pen/jwwpXQ

.wrap {
  height: 80vh;
  margin: 10vh 10vw;
  width: 80vw;
}

.wrap:before {/* here comes the mask hidding edges with a white shadow */
  content: "";
  position: fixed;
  top: 10vh;
  bottom: 10vh;
  left: 10vw;
  width: 80vw;
  border: solid 1px;
  box-shadow: 0 0 0 10vw white;
  pointer-events: none;/* will not catch pointer-events and will let pointer-events occurs within .wrap */
}

.sidebar {
  text-align: center;
  background: rgba(170, 170, 170, 0.7);
  height: 80vh;
  position: fixed;
  width: 20vw;
  left: 10vw;
}

.sidebar button {
  margin: 5px;
}

main {
  background: #FFAB91;
  margin-left: 20vw;
}

header {
  background: #ccc;
  height: 30px;
  text-align: center;
}

header span {
  background: #aaa;
  display: inline-block;
  height: 12px;
  margin-top: 9px;
  vertical-align: top;
  width: 90px;
}

.hide {
  display: none;
}

.item {
  height: 100px;
  background: #ddd;
  margin: 20px;
}

.cnt {
  padding-bottom: 10vh
}
<div class="wrap">
  <div class="sidebar">Sidebar</div>
  <main>
    <header><span>  </span></header>
    <div class="cnt">
      <div class="item"><a href="">click me</a> or select me </div>
      <div class="item"></div>
      <div class="item"></div>
      <div class="item"></div>
      <div class="item"></div>
      <div class="item"></div>
      <div class="item"></div>
      <div class="item"></div>
      <div class="item"></div>
      <div class="item"></div>
    </div>
  </main>
</div>

Upvotes: 1

Isaac Reason
Isaac Reason

Reputation: 266

You can cheat that by removing overflow: auto from .wrap and adding extra overlay to hide the overflowing content:

https://codepen.io/anon/pen/PjjBxE

Upvotes: 0

Related Questions