Bootstrap modal issue on Safari/iOS/iPhone

后端 未结 4 1356
闹比i
闹比i 2020-12-03 17:58

Bootstrap modal fade is working perfectly on Chrome/Internet Explorer, but it doesn\'t work on the iPhone/Safari. Does someone a solution for this issue?

&l         


        
4条回答
  •  渐次进展
    2020-12-03 18:56

    I found this answer that solved the problem for me. The problem is that iOs doesn't realize that the tag is clickable.

    Create a CSS style as follows:

    .clickable {
        cursor: pointer;
    }
    

    In your modal code, add the clickable class:

  • Delete
提交回复
热议问题