Adding scroll bar to dialog box

css code can be added to add scroll bar:

body {
  overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
}

we can also specify the height of the dialog box for which the scroll bar is added:

body { overflow-y: scroll; display: block; height:150px;}

Leave a comment

Your email address will not be published. Required fields are marked *