1
2
3
4
5
6
7
8
|
/* 세로로 그라디언트 */
background: linear-gradient(to top, blue, red);
/* 가로로 그라디언트 */
background: linear-gradient(to right, yellow, green);
/* 대각선 그라디언트 */
background: linear-gradient(to top right, purple, orange);
|
cs |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<style>
.highlight {
background-color: yellow;
}
.half_background {
background: linear-gradient(to top, yellow 50%, transparent 50%);
}
.linear_background {
background: linear-gradient(to top, yellow 50%, transparent 100%);
}
</style>
</head>
<body>
<p>이 텍스트에서 <span class="highlight">형광펜 효과</span>를 주고 싶습니다.</p>
<p>이 텍스트에서 <span class="half_background">형광펜 효과</span>를 주고 싶습니다.</p>
<p>이 텍스트에서 <span class="linear_background">형광펜 효과</span>를 주고 싶습니다.</p>
</body>
</html>
|
cs |
ai파일 웹상에서 보기, 일러스트파일 웹, ai파일 웹뷰어, ai웹뷰어 (0) | 2023.06.26 |
---|---|
selectbox 이쁘게 만들기, select2 라이브러리로 이쁘게, 그룹으로 묶기까지 (0) | 2023.06.21 |
CSS 로 배경색상을 변경하는 애니메이션 코드... 10초간격 반복변경 (0) | 2023.06.15 |
css를 이용해서 html table에 효과주기 기본, 마우스오버, 라인배경색, 모바일 최적화 (0) | 2023.06.14 |
css버튼 이쁘게 꾸미기, 애니메이션 효과주기 (0) | 2022.08.05 |
댓글 영역