CSS3で要素を歪ませる場合は下記のように記述します。
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>sample</title>
<link href="stylesheet.css" rel="stylesheet"/>
</head>
<body>
<div id="sample">
<div id="skew">
<h1>sample</h1>
</div>
</div>
</body>
</html>
stylesheet.css
#sample {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#skew {
transform: skew(-45deg);
}
index.htmlを実行すると下記のようにブラウザで表示されます。
歪みの角度を変更:
#skew {
transform: skew(-135deg);
}