Thuộc tính | giá trị | Ví dụ | Mô tả |
---|---|---|---|
perspective-origin | [x-axis] [y-axis] | perspective-origin: x-axis y-axis; | x-axis: left | center | right | length | % y-axis: top | center | bottom | length | % |
Xem ví dụ
<style>
#ttt1
{
position: relative;
height: 150px;
width: 150px;
margin: 10px auto;
padding:10px;
border: 1px solid black;
background-color: #FBFFEB;
perspective:150;
perspective-origin: 10% 10%;
-webkit-perspective:150; /* Safari and Chrome */
-webkit-perspective-origin: 10% 10%; /* Safari and Chrome */
}#ttt2
{
padding:50px;
position: absolute;
border: 1px solid black;
background-color: #C5E099;
transform: rotateX(45deg);
-webkit-transform: rotateX(45deg); /* Safari and Chrome */
}</style>
<div id="ttt1"> ttt1 <div id="ttt2"> ttt2 </div></div>
Sự tương thích ( Cập nhật / Báo lỗi )
No comments:
Post a Comment