bootstrap3.x去除modal在移动浏览器的滚动条以及去除移动端浏览器input的radius和shadow

  1. �bootstrap3.x去除modal在移动浏览器(IOS)的滚动条

添加css body.modal-open{ position: fixed}

参考链接-1
参考链接-2

  1. 去除移动端浏览器(IOS)input的radius和shadow

-webkit-appearance: none;
-moz-appearance: none;
-webkit-border-radius: 0;
border-radius: 0;

参考链接

你可能感兴趣的:(bootstrap3.x去除modal在移动浏览器的滚动条以及去除移动端浏览器input的radius和shadow)