We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

natalie on 10/15/07


Tagged

css image autoscroll sitepoint


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

vali29


Replacing autoscroll image in Firefox


Published in: CSS 


URL: http://www.sitepoint.com/

Sitepoint have this useless but cool feature if you hold down the middle click to autoscroll the page - they have replaced the image that indicates scrolling


  1. html>img /* autoscroll override for Firefox */
  2.  
  3. {
  4.  
  5. width: 0!important;
  6.  
  7. height: 28px!important;
  8.  
  9. padding-left: 28px!important;
  10.  
  11. background: url(/images/icons/autoscroll2.png);
  12.  
  13. }

Report this snippet 

You need to login to post a comment.