niutech / showModalDialog

window.showModalDialog polyfill using a <dialog> element
https://niutech.github.io/showModalDialog/demo.html
Apache License 2.0
177 stars 88 forks source link

how to make the dialog scrollable? #36

Closed chengfanke closed 6 years ago

chengfanke commented 6 years ago

Thanks for the great job. I just wonder how can I add scrollbar to the dialog, if the content height is beyond the dialog size. Can someone give me any clue?

niutech commented 6 years ago

You can add overflow: auto; to the CSS styles of the <dialog> element (e.g. using the options argument in showModalDialog())

chengfanke commented 6 years ago

thx for the reply. I have have a try.