hi all,
this is my first post so sorry in advance for any mistakes.
the problem I'm facing is that i try to use both a gradient background and rounded corners on a div and it all works fine in chrome, firefox and opera but in ie the minute i use the gradient it flows out of the rounded corners.
below is the code snippet for the css
.divcss3{
border-radius:10px; /* rounded corners */
height:70px;
border:1px solid #000;
background: #9a4a0d; /* Old browsers */
background: -moz-linear-gradient(top, #9a4a0d 0%, #611e03 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9a4a0d), color-stop(100%,#611e03)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #9a4a0d 0%,#611e03 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #9a4a0d 0%,#611e03 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #9a4a0d 0%,#611e03 100%); /* IE10+ */
background: linear-gradient(top, #9a4a0d 0%,#611e03 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9a4a0d', endColorstr='#611e03',GradientType=0 ); /* IE6-9 */
}
would appreciate any help regarding this. 