CSS3 drop shape
An example showing how to create CSS3 drop shape using Tizen 2.3.
<style>
.drop {
transform: rotate(45deg);
position: absolute;
left: 100px;
top: 100px;
width: 100px;
height: 100px;
background: #5ECFFF;
border-radius: 10% 50% 50% 50%;
}
</style>
<div class="drop"></div>