• 第一章入门篇伪类伪对象


    1.伪类

    伪类用来指定HTML元素某个状态下的样式,格式 选择符:伪类{属性:属性值}

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>伪类</title>
        <style type ="text/css" >
            a:link{ text-decoration:none;font-size:50px;/*链接默认状态下的样式*/ }
            a:visited{ color:Red;/*链接访问过后的样式*/}
            a:hover{ text-decoration:underline; color:Silver;/*鼠标放在链接上时的样式*/}
            a:active{ color:Maroon;/*点击链接时的样式*/}
            /*设置a伪类的顺序必须按照上面的顺序书写,否则可能无效*/
            
            
            input:hover{ background-color:#F00;/*鼠标放在输入框时改变背景色*/}
        </style>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
            <a href="#">伪类</a>可以用来指定选择符在某种状态下的样式,用来增加交互效果而不必使用过多的JavaScript!
            <br />
            <input type ="text" />
        </div>
        </form>
    </body>
    </html>
    View Code

    2.伪对象

    伪对象是在在指定的HTML元素之外加上额外的信息,格式: 选择符:伪对象{属性:属性值}

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>伪对象</title>
        <style type ="text/css" >
        p:before{ content:"双十一";  font-weight:bold; }
        p:after{ content:",准备好剁手了吗?"; color:Red;}
        </style>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
            <b>伪对象可在HTML元素的前面或后面加上额外的信息!</b>
            <p>快到了</p>
        </div>
        </form>
    </body>
    </html>
    View Code
  • 相关阅读:
    微信h5下拉隐藏网页,还有取消页面滑动
    vuejs中使用递归嵌套组件
    运行gitbook init命令报错及问题解决办法
    利用python生成gitbook目录文件
    通过Appium日志,分析其运行原理
    字符串两两更换位置
    Dockerfile启动的程序,内存不断增长问题
    测试流程优化
    APP测试面试题(一)
    关于面试总结13-app测试面试题
  • 原文地址:https://www.cnblogs.com/lidaying5/p/9879683.html
Copyright © 2020-2023  润新知