• CSS3选择器—伪类选择器

    前面花了两节内容分别在《CSS3选择器——基本选择器》和《CSS3选择器——属性选择器》介绍了CSS3选择器中的基本选择器和属性选择器使用方法,今天要和大家一起学习CSS3选择器中 的第三部分,也是最后一部分——伪类选择器。伪类选择器对于大家来说最熟悉的莫过于:link,:focus,:hover之类的了,因为这些在平时中是 常用到的伪类选择器,那么先和大家一起简单总结一下CSS中常用的伪类选择器的使用方...阅读全文
    作者:admin | 分类:CSS | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • CSS3选择器—属性选择器

    上一切在《CSS3选择器——基本选择器》中主要介绍了CSS3选择器的第一部分,这节主要和大家一起来学习CSS3选择器的第二部分——属性选择器。属性选择器早在CSS2中就被引入了,其主要作用就是对带有指定属性的HTML 元素设置样式。使用CSS3属性选择器,你可以只指定元素的某个属性,或者你还可以同时指定元素的某个属性和其对应的属性值。 从上一节展示的CSS3选择器的图表中,我们可以知道,CSS3的...阅读全文
    作者:admin | 分类:CSS | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • CSS3选择器—基本选择器

    CSS的选择器,我想大家并不会陌生吧,因为天天在使用,但对于CSS3的选择器,要运用的灵活到位,我想对很多朋友还是一定的难度,特别是CSS3中的:nth选择器。那么从现在开始我们先丢开他们版本的区别,从头一起来看看CSS选择器的运用。 CSS是一种用于屏幕上渲染html,xml等一种语言,CSS主要是在相应的元素中应用样式,来渲染相对应用的元素,那么这样我们选择相应的元素 就很重要了,如何选...阅读全文
    作者:admin | 分类:CSS | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • js实现页面加载时模拟点击

          <script> function load(){     //下面两种方法效果是一样的     document.getElementById("li_register_type_email").click();     document.getElementById("li_register_type_email").onclick();   //只有单击按钮时才会实现点击 } function test(){     alert("test"); } </script> <body onload="load()">         <button id="li_register_type_em...阅读全文
    作者:admin | 分类:Javascript | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • input 取消“提交查询”

    原因用Input 做按钮 <input type="submit" > 结果在火狐里显示如下图 方法:<input type="submit" value="提交" name="submit"> value="" 即可 阅读全文
    作者:admin | 分类:HTML | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 标准CSS初始化

    html,body,div,blockquote,pre,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li,iframe,fieldset,form{margin:0;padding:0} ol,ul{list-style:none} body{font-size:12px;font-family:"微软雅黑";color:#000} a:link,a:visited{color:#ccc; text-decoration:none} a:hover{text-decoration:underline} .left{float:left} .right{float:right} .clear{clear:both} .center{text-align:center} .mt_8{...阅读全文
    作者:admin | 分类:CSS | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 背景平铺

    <!DOCTYPE html> <html > <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>背景平铺</title> <style> #beijing{z-index:-999;display:block;position:absolute;top:0} </style> <script> beijing.style.height=document.documentElement.clientHeight+10+"px"; </script> </head>...阅读全文
    作者:admin | 分类:Javascript | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 一行代码解决IE兼容问题

    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> 强制IE浏览器使用IE7内核。 阅读全文
    作者:admin | 分类:浏览器 | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • js选项卡

    方法一: <li id="tab1" onClick="show(1)" style="background-color:green">选项1</li> <li id="tab2" onClick="show(2)">选项2</li> <p id="p1">选项卡1的内容。。。</p> <p id="p2" style="display:none">选项卡2的内容。。。</p> <script> function show(n){ for(var i=1;i<=2;i++){ //先把所有的选项卡背景颜色设为橙色,内...阅读全文
    作者:admin | 分类:Javascript | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • CSS中强大的EM

    使用CSS也好久了,但一直都是在使用“px”来设置Web元素的相关属性,未敢使用“em”。主要原因是,对其并不什么了解,只知道一点概念性的东西,前段时间在项目中要求使用“em”作为单位设置元素,所以从头对“em”学习了一回。稍为有一点理解,今天特意整理了一份博文与大家一起分享,希望对童子们有些许的帮助。 这篇教程将引导大家如何使用“em”来创建一个基本的弹性布局,从而学习其如何计算?...阅读全文
    作者:admin | 分类:CSS | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 利用vertical-align:middle实现在整个页面居中

    如果想让一个div或一张图片相对于整个页面居中,用vertical-align:middle可以很简单地解决。 就以一个404页面为例,看如何让一张图片相对于整个页面居中,如下图: 这是一个404页面,里面就只有一张图片,点击图片可以回到首页,而且这个图片是相对于整个页面居中的,无论是水平还是垂直(PS:这可算是我做404页面最为习惯的一种懒人做法了,越简单越好,要想好看的话,直接用photoshop做...阅读全文
    作者:admin | 分类:CSS | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |