@font-face { font-family: <YourWebFontName>; src: <source> [<format>][,<source> [<f…
分类:HTML/CSS
Bootstrap之Carousel不能自动播放的解决办法
Bootstrap的Carousel组件不能自动播放的问题,这里要注意几个问题: 先看一下Carousel的正确写法(代码,这里使用的是Bootstrap 3.2版本): <div id=”carous…
bootstrap 响应式图片自适应图片大小
<img class=”img-responsive center-block” src=”…” /> 或: $(window).load(func…
网站内容禁止复制和粘贴、另存为的js代码
方法1: <script language=”Javascript”> document.oncontextmenu=new Function(“event.returnV…
CSS判断不同分辨率显示不同宽度布局CSS3技术支持IE6到IE8
CSS判断不同分辨率浏览器(显示屏幕)显示不同宽度布局CSS3技术支持IE6到IE8。将用到css3 @media样式进行判断,但IE9以下版本不支持CSS3技术,这里DIVCSS5给大家介绍通过JS实现低版本的浏览器也…
CSS!important声明强制优先
!important声明强制优先 CSS优先级中还有一个最无敌的声明,就是!important。 在CSS样式表中,带有!important声明的样式优先使用,它的优先级会超越任何地方、任何方式的样式声明,包括行内sty…
恢复容器里所有html元素的默认样式
/* 将dcss容器里的所有元素设为默认值 */ .dcss html,.dcss address,.dcss blockquote,.dcss body,.dcss dd,.dcss div, .dcss dl,.dc…
CSS3 圆角(border-radius)
-moz(例如 -moz-border-radius)用于Firefox -webkit(例如:-webkit-border-radius)用于Safari和Chrome。 -moz-border-radius: 15p…
CSS3 :nth-child() 选择器
原文链接:http://www.w3school.com.cn/cssref/selector_nth-child.asp 实例 规定属于其父元素的第二个子元素的每个 p 的背景色: p:nth-child(2) { b…
