treehouse : what would you like to learn today?
Web Design Web Development iOS Development

IE border style with rounded corners??

  • hI,
    I need to create some boxes with rounded corners, border needs to be style -> dashed or dotted.
    found some cross browser code but border style still not working in IE.
    This is my code:
    .box {
    background-color: #FFCF01;
    width:170px;/*196*/
    height:483px;/*516*/
    padding:33px 6px 0 0;

    margin:0 0 0 20px;
    border: 4px dotted black;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    border-radius: 13px;

    behavior: url(css/border-radius.htc);
    }

    </style>

    any idea how to get border style working in IE?

    THANKS :)
  • Have you had a look at CSS3PIE?