10 comments

  • Henrique Alves, over 9 years ago

    No need for mixin. Just use Compass @include border-radius(4px, 4px); or if you don't care about IE7 just go without prefix.

    1 point
    • Max Steenbergen, over 9 years ago (edited over 9 years ago )

      This is not based on Compass. It does not require Compass, either. Also, border-radius doesn't work on the html and body tags.

      1 point
  • John LeschinskiJohn Leschinski, over 9 years ago

    I don't see the problem this solves. Just use border radius, or clip, or mask even.

    0 points
  • Dominik SchmidtDominik Schmidt, over 9 years ago

    Why mixin? - You can just use the extend method if there is no mixin Why ID's? - ID's are unique, so you can just use the id's one time on a page.

    My advice: - Change the IDs to classes and don't use a mixin. Then you can use @extend on any object you want and the DOM is not messed up.

    0 points