Archive of 2009 August
Credit Card Autocomplete
When working on a shared computer, there is a lot of risk involved with personal data. For example, buying something online with a credit card. Best practice is to clear all saved data from the computer as one logs off. However, I am not convinced a majority of users know…
Horizontal Scroll
For some reason I haven’t seen many examples of a horizontal scrolling div. These are commonly used for image slideshows (we have a number of photography clients). CSS: div { width:380px; height:80px; padding: 15px 0 30px 0; overflow-x:auto; white-space:nowrap; } By default, img tags are display:inline, so you need only…