Inner border
An example showing how to create inner border using Tizen 2.3.
<style>
.border {
border: 10px solid green;
width: 100px;
height: 100px;
background-color: lightgreen;
/* Inner border */
box-sizing: border-box;
}
</style>
<div class="border"></div>