nicescroll

Operlapping Nicescroll scrolbars in Bootstrap tabs

邮差的信 提交于 2019-12-01 10:53:56
问题 I'm using Nicescroll to display scrollbars on bootstrap tabs. While it displays the scrollbars, if we initialize nicescroll on multiple tabs, the scroller from non-active tabs are also visible at all times. This fiddle is a recreation of the issue: http://jsfiddle.net/LittleLebowski/B86me/15/ Here's the code: HTML code <!-- Nav tabs --> <ul class="nav nav-tabs"> <li><a href="#home" data-toggle="tab">Home</a></li> <li><a href="#profile" data-toggle="tab">Profile</a></li> </ul> <!-- Tab panes -

HTML-iframe标签

自古美人都是妖i 提交于 2019-11-28 03:10:31
碎碎:这两天在实践中,用到了 iframe,之前对其不甚了解,了解之中遇到好多奇葩问题,今天记录下这两天遇到的相关的内容。 嵌入的 iframe 页面的边框 嵌入的 iframe 页面的背景 嵌入的 iframe 页面居中 嵌入的 iframe 页面的滚动条 iframe 父页面调用子页面 iframe 子页面调用父页面 1. iframe 嵌入页面的边框 //HTML 元素:主要有 src: 要嵌入的页面 <iframe id="framePage" src="iframe/inner_page.jsp"></iframe> // 默认有边框: 新建测试文件,命名:test_iframe01.html,内容如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> //为了方便区别,对应设置了样式 <style> .iframe_page{ width: 400px; height: 260px; background-color: #dfdfdf; //为了方便区别,设置背景样式 } .iframe_page #framePage{ width: 300px; height: 200px; background-color: #adb9cd; /