Web实现:伪类事件伪类搜索框悬停效果

伪类搜索框悬停效果,鼠标悬停时元素变色。
HTML部分:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>练习</title>
    <link rel="stylesheet" href="index.css" type="text/css" media="all" />
</head>

<body>
    <div class="search-box">
        <input type="text" value="红米k20">
        <div>
            <span></span>
        </div>
    </div>
</body>

</html>

CSS部分代码:

body {
    margin: 0px;
}

.search-box {
    position: relative;
    box-sizing: border-box;
    width: 254px;
    height: 42px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
}

.search-box>input {
    box-sizing: border-box;
    border: none;
    height: 40px;
    width: 209px;
    outline: none;
    font-weight: normal;
    font-size: 12px;
    line-height: 17px;
    color: #AEAEAE;
    padding-left: 20px;
}

.search-box>div {
    position: absolute;
    top: -1px;
    right: -1px;
    height: 42px;
    width: 42px;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    padding: 12px;
}

.search-box>div>span {
    display: block;
    width: 16px;
    height: 16px;
    background: url(./images/search-normal.png) no-repeat center;
    background-size: contain;
}

.search-box>div:hover {
    background: #FD6821;
}

.search-box>div:hover>span {
    background: url(./images/search-hover.png) no-repeat center;
    background-size: contain;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

jasmyn518

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值