textarea中的垂直滚动条显示在I.E,FF和Chrome中,但不显示在ipod / ipad等i-os设备中。
<textarea id="termsConditions" cols="30" rows="5" readonly="readonly">Sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample</textarea>
如何解决此问题?
提前多多感谢。
答案 0 :(得分:6)
就像迈克尔哈尔平所说的那样。将-webkit-overflow-scrolling: touch
添加到您的样式中。
<强> HTML 强>
<textarea id="termsConditions" cols="30" rows="5" readonly="readonly">Sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample</textarea>
<强> CSS 强>
#termsConditions {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
<强> DEMO 强>
答案 1 :(得分:0)
它为我工作
::-webkit-scrollbar {width: 10px;}
::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 10px;}
::-webkit-scrollbar-thumb {border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);}
希望这适合你