색조,채도,명도 입력법
hsl(색조, 채도, 명도)
hsla(색조, 채도, 명도, 투명도)
html)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, height=device-height, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0"> <title>Insert title here</title> <style> body { background : url(images/testimage.jpg); } p { width : 100%; font-size : 2em; /** hsl(색조, 채도, 명도) hsla(색조, 채도, 명도, 투명도) */ background-color : hsla(0, 0%, 80%, 0.5); } p span { font-weight : bold; font-size : 1.2em; color : hsla(0, 100%, 50%, 0.3); } </style> </head> <body> <p>가나다라마바사아자차카타파하아야어여오요우유으이<br/> <span>1234567890</span> </p> </body> </html> | cs |
결과)
투명도를 줘서 뒤의 배경이 보인다
'IT > - 프로그래밍' 카테고리의 다른 글
HTML5/CSS3 인접 형제 선택자, 형제 선택자 (0) | 2017.05.26 |
---|---|
HTML5/CSS3 :root 선택자 : body태그 보다 위의 최상위 선택자 (0) | 2017.05.25 |
HTML5/CSS3 colspan, rowspan : 테이블의 가로, 세로셀 합치기 (0) | 2017.05.23 |
HTML5/CSS3 <figure><figcaption> : 요소의 내용 요약 (0) | 2017.05.22 |
HTML5/CSS3 <pre>태그 : 있는 그대로 보여준다 (0) | 2017.05.21 |