4

textarea の垂直スクロール バーは、IE、FF、Chrome では表示されますが、iPod/iPad などの iOS デバイスでは表示されません。

<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>

この問題を解決するにはどうすればよいですか?

よろしくお願いします。

4

2 に答える 2

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;
}​

デモ

于 2012-08-13T21:15:34.857 に答える