<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> skew()함수를 텍스트 영역에 적용하기 </title>
<style>
#container {
width:600px;
margin: 20px auto;
}
h1 {
width:500px;
height:80px;
background-color:#222;
color:#fff;
font-weight:bold;
line-height:80px;
text-align:center;
transform:skewX(15deg); /*x축 기준으로 15도 비틀기 */
}
</style>
</head>
<body>
<div id="container">
<h1>CSS 변형 함수 익히기</h1>
</div>
</body>
</html>
'css' 카테고리의 다른 글
11장 예제 - 트랜지션 속성 한꺼번에 지정하기 (0) | 2023.04.03 |
---|---|
11장 예제 - 트랜지션 대상과 진행 시간 진행하기 (0) | 2023.04.03 |
11장 예제 - rotate()함수 (0) | 2023.04.03 |
11장 예제 scale()함수를 사용해 확대.축소하기 (0) | 2023.04.03 |
11장 예제 - translate() 함수를 사용해 웹 요소 이동하기 (0) | 2023.04.03 |