Search code examples
javascripthtmlmaterialize

How to change the size of a modal materializecss


sorry if the question is very simple but I'm new using materializeCss

As I can increase the height and width of a modal materializecss ??


Solution

  • In order to set the height and width of the MaterializeCSS Modal you need to edit the CSS of

    .modal { width: 75% !important ; height: 75% !important ; }  /* increase the height and width as you desire */
    

    See more explanation as written by pihyper here: https://stackoverflow.com/a/34580086/3133641