Friday, 2 December 2011

css div tag side crop

hi,
let us discuss the div tag angle side crop
many method are available but i am showing the one method using css and html div tag.we have a div tag
eg:
      <div id="temp"></div>
to adjust the div tag side end in crop style using css given by
#temp
{
 margin:0;
 position:absolute;
 background: #0000FF;
 color:#CCCCCC;
 top:18px;
 right:313px;
 width:122px;
 -moz-transform:rotate(-39deg);
 -moz-border-radius-topleft: 10000px 9000px;
  -moz-border-radius-topright: 10000px 9000px;
   -moz-border-radius-bottomleft: 10000px 9000px;
  -moz-border-radius-bottomright: 10000px 9000px;
   -moz-box-shadow:inset 0 3px 10px #000000;
   -webkit-box-shadow:inset 0 3px 10px #000000;
   box-shadow:inset 0 3px 10px #000000; 
}
thank you.

No comments:

Post a Comment