Cascading Style Sheets

2017-08-07  本文已影响9人  Rco

Since July 8th,2017

.parent {
  height: 100px;
  width: 100px;
}
.child {
  height: 100%;
  width: 100%;
  padding: 0 20px 0 0; /* Or width: calc(100% + 15px) */
}
  1. 设置子元素和父元素的overflow
    以子元素需要纵向滚动为例,设置父元素横向滚动条为hidden,而子元素纵向滚动条为atuo。即
.parent {
  overflow-x: hidden;
}
.child {
  overflow-y: auto;
}
上一篇 下一篇

猜你喜欢

热点阅读