html
<p><span>HIGHLIGHT</span><br /><span>TEXT</span></p>
css
๋ฐฉ๋ฒ 1 : box-shadow
span {
/* inset | offset-x | offset-y | color */
box-shadow: inset 0 -20px 0 #bfffa1;
}
๋ฐฉ๋ฒ 2 : background
span {
background: linear-gradient(to top, #bfffa1 40%, transparent 40%);
}
๋ฐฉ๋ฒ 3 : pseudo element
span {
position: relative;
}
span:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 40%;
background-color: #bfffa1;
z-index: -1;
}
+ ์ถ๊ฐ์ ์ผ๋ก height, line-height, border-bottom, text-indent ์์ฑ ๋ฑ์ ์ด์ฉํด์ ์์ธ ์์น๋ฅผ ์กฐ์ ํ๋ฉด ๋๋ค.