css search

by Upward

HTML

<br>
test red h<span>ot chil</span>li papers

CSS

span {
    position: relative;
    display: inline-block;
    z-index: 1;
}
span::before {
    content: "";
    display: block;
    background: #FFEB00;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    border-radius: 5px;
    padding: 1px 2px;
    margin: -1px 0 0 -2px;
    box-shadow: 0 1px 1px 0px #A2A2A2, inset 0 -1px 0px 0px rgba(255, 255, 255, 0.43);
}