repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
transforms
/
skew-with-unitless-zero.html
blob
24a7f3df72ab0eb1b91b5aa5dad8dbd6a91fcd19
1
<html>
2
<head>
3
<style>
4
div {
5
width:
100
px;
6
height:
100
px;
7
border:
10
px solid black;
8
background-color:skyblue;
9
margin:
100
px;
10
}
11
12
.skew {
13
transform:skew(
0
,
45
deg)
14
}
15
</style>
16
</head>
17
<body>
18
In the example below you should a y-skewed block (
45
degree angle of skew).
19
20
<div
class
=
"skew"
></div>