Anastasis 48 Report post Posted November 10, 2016 Το να χρησιμοποιείτε διαφορετικά CSS properties σε διαφορετικούς browsers είναι κάτι πολύ σύνηθες αφου δεν έχουνε την ίδια χρήση.Conditional-CSS επιτρέπει να χρησιμοποιείτε το if statment για να απευθυνθείτε σε έναν μόνο browser ή σε ένα group απο browsers Conditional CSS Features of Conditional-CSS: * Target CSS to any web-browser * Streamline maintenance of your CSS files * Optimise your CSS * Work around those annoying little CSS bugs * Automatic expansion and inclusion of @import statements * It’s free and open source! κώδικας: # /* Conditional-CSS example */ a.button_active, a.button_unactive { display: inline-block; [if lte Gecko 1.8] display: -moz-inline-stack; [if lte Konq 3.1] float: left; height: 30px; [if IE 5.0] margin-top: -1px; text-decoration: none; outline: none; [if IE] text-decoration: expression(hideFocus='true'); } Website: http://www.conditional-css.com/ Demo: http://www.conditional-css.com/demo/ Download: http://www.conditional-css.com/download 1 Quote Share this post Link to post Share on other sites