I have the following code code, but for some reason it does not work for me.
#bienvenida1{
width:880px;
height:320px;
position:relative;
top:50px;
left:40px;
perspective:150px;
-webkit-perspective:150px;
}
#bienvenida2{
background-color:#7596ff;
position:absolute;
border:1px solid black;
-webkit-transform: rotateX(20deg);
transform: rotateX(20deg);
}
<div id="bienvenida1">
<div id="bienvenida2"></div>
</div>
The table is not displayed in the browser as it should be.