如果没有溢出,防止工具提示上的滚动条?

时间:2015-07-26 07:37:42

标签: html css

我创建了一个工具提示,我有以下CSS。请注意,在Mac上,工作就像魅力,但在窗户上 - 没有运气。即使内容没有溢出,滚动条轨道也会显示。没有它们我怎么能得到我的工具提示?如果他们需要它们,我怎么才能只显示垂直的那个。

.tooltip-container {
  font-size: 1.2rem;
  overflow: scroll;
  max-height: 200px;

enter image description here

1 个答案:

答案 0 :(得分:1)

隐藏带有overflow-x:hidden的x轴,在y轴上使用'auto'值,如果需要,它只会显示滚动条

.tooltip-container {
  font-size: 1.2rem;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 200px;