美文网首页
CSS-伪类的样式

CSS-伪类的样式

作者: 测试探索 | 来源:发表于2022-06-04 09:55 被阅读0次

一、介绍

image.png
image.png

二、目录和代码

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
    <p>http://www.baidu.com</p>
    <p class="p1">test</p>
    <a href="#">伪类</a>
    <label>用户名</label>
    <input type ="text">
</body>
</html>

index.css

a:link{
    color: red;
}

a:visited{
    color: green;
}

a:hover{
    color: yellow;
    font-size: 30px;
}

a:active{
    color: blue;
}

label:hover{
    color: red;
}

input:hover{
    background-color: red;
}

input:active{
    background-color: blue;
}
image.png

相关文章

  • CSS-伪类的样式

    一、介绍 二、目录和代码 index.html index.css

  • CSS-伪类

    伪类专门用来表示元素的一种特殊状态 需要为这些特殊状态设置样式,就得使用伪类 超链接 aa:linka:visit...

  • CSS基础之伪类伪元素&样式优先权

    伪类&伪元素 首字样式控制 —— 使用伪元素::first-letter 首行样式控制 —— 使用伪元素::fir...

  • css-伪类,伪元素

    1.伪类 - 向选择器 设置特殊条件 - 可以选择到包含特殊含义的元素。 2.伪元素 - 向选择器 添...

  • CSS 优先级

    行内样式 > 内部样式/外部样式 内部样式/外部样式不存在优先级,谁后加载谁优先级高 伪类首字母 > 伪类首行 >...

  • Css中样式的优先级

    Css中样式的优先级 !important>行内样式>ID选择器>类、伪类、属性>元素、伪元素>继承>通配符 !i...

  • Css3Two

    文本溢出样式设置 文本超出容器以后: 换行显示 超出容器部分也显示 伪类和伪元素 伪类和伪元素 都是css中的伪类...

  • CSS:伪类、样式表、多列

    伪类# 样式表### 多列######

  • 纯css实现鼠标悬停文字的汽泡提示

    1 固定样式 2 伪类实现

  • css面试

    (1)选择器权重 important > 内嵌样式 > ID > 类 > 标签 | 伪类 | 属性选择 > 伪对象...

网友评论

      本文标题:CSS-伪类的样式

      本文链接:https://www.haomeiwen.com/subject/fmsgprtx.html