我正在尝试在我的网站上创建一个固定/浮动的右对齐帮助按钮,当点击时,会在右侧的屏幕上按maxHeight部分展开特定宽度,以便为用户提供帮助。
.floating-help-section {
background-color: #fbd850;
position: fixed;
float: right;
left: 0;
right: 0;
bottom: 50px;
height: 50px;
width: 200px;
z-index: 2000; !important;
}
.help-accordion {
background-color: yellow;
color: #444444;
cursor: pointer;
padding: 10px;
width: 200px;
border: none;
text-align: center;
outline: none;
font-size: 15px;
transition: 0.4s
}
.help-panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
}
<div class="container" style="width: 100%;">
<div class="floating-help-section">
<button class="help-accordion">Help</button>
<div class="help-panel">
This is where the help content goes
</div>
</div>
</div>
上面的代码是一个正确方向的开始,它不会在一些较小的问题中浮动在右边。我的主要问题是我不知道如何强制我的帮助面板的特定未折叠/扩展大小,以使其扩展得很好,并有足够的空间来显示我的内容。